style.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
  3. @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. -webkit-box-sizing: border-box;
  8. box-sizing: border-box;
  9. font-family: 微軟正黑體;
  10. }
  11. @font-face {
  12. font-family: 追奇手寫體;
  13. src: url(./drechifont-proportional.woff);
  14. font-weight: 900;
  15. }
  16. body {
  17. width: 100vw;
  18. background: #f4fffc;
  19. position: relative;
  20. z-index: -2;
  21. }
  22. body p {
  23. color: #adadad;
  24. }
  25. @media screen and (max-width: 767px) {
  26. body p {
  27. font-size: 0.5rem;
  28. }
  29. }
  30. body .title-main {
  31. font-family: "Noto Sans TC", sans-serif;
  32. font-weight: 600;
  33. color: #646464;
  34. font-size: 2.5rem;
  35. }
  36. @media screen and (max-width: 1024px) {
  37. body .title-main {
  38. font-size: 2rem;
  39. }
  40. }
  41. @media screen and (max-width: 350px) {
  42. body .title-main {
  43. font-size: 2rem;
  44. }
  45. }
  46. body .line {
  47. background: #9b9a9a;
  48. height: 2px;
  49. width: 8vw;
  50. margin: 15px auto;
  51. }
  52. @media screen and (max-width: 767px) {
  53. body .line {
  54. width: 28vw;
  55. }
  56. }
  57. body .arrow {
  58. position: fixed;
  59. right: 3vw;
  60. bottom: 0.5vw;
  61. width: 5vw;
  62. height: 5vw;
  63. z-index: 10;
  64. border-radius: 80px;
  65. }
  66. @media screen and (max-width: 767px) {
  67. body .arrow {
  68. width: 20vw;
  69. height: 20vw;
  70. }
  71. }
  72. body #btn-a {
  73. text-decoration: none;
  74. }
  75. body #btn-a #mobile-btn {
  76. display: block;
  77. margin: 0 auto;
  78. margin-top: 1vw;
  79. width: 60vw;
  80. border-radius: 30px;
  81. padding: 12px;
  82. background: #fff;
  83. color: #a9d0c5;
  84. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  85. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  86. border: 3px solid #a9d0c5;
  87. font-weight: 900;
  88. }
  89. @media screen and (min-width: 768px) {
  90. body #btn-a {
  91. display: none;
  92. }
  93. }
  94. @media screen and (min-width: 1025px) {
  95. body #btn-a {
  96. display: none;
  97. }
  98. }
  99. #Navigation {
  100. background: #a9d0c5;
  101. height: 4.5vw;
  102. width: 100vw !important;
  103. position: fixed;
  104. z-index: 10;
  105. }
  106. @media screen and (max-width: 1024px) {
  107. #Navigation {
  108. height: 8vw;
  109. }
  110. }
  111. @media screen and (max-width: 767px) {
  112. #Navigation {
  113. height: 15vw;
  114. position: fixed;
  115. z-index: 5;
  116. border-bottom: 1px solid white !important;
  117. }
  118. }
  119. #Navigation #nav {
  120. width: 100vw;
  121. margin: 0 auto;
  122. }
  123. #Navigation #logo {
  124. padding-top: 0.5vw;
  125. }
  126. @media screen and (max-width: 767px) {
  127. #Navigation #logo {
  128. padding-top: 0;
  129. }
  130. }
  131. #Navigation #logo img {
  132. width: 120px;
  133. }
  134. #Navigation #link {
  135. text-align: right;
  136. padding: 1.5vw 3vw;
  137. }
  138. @media screen and (max-width: 1024px) {
  139. #Navigation #link {
  140. padding-top: 2vw;
  141. }
  142. }
  143. @media screen and (max-width: 767px) {
  144. #Navigation #link {
  145. display: none;
  146. }
  147. }
  148. #Navigation #link a {
  149. text-decoration: none;
  150. color: #fff;
  151. letter-spacing: 1px;
  152. font-size: 0.9rem;
  153. font-weight: 600;
  154. cursor: pointer;
  155. padding: 15px;
  156. position: relative;
  157. }
  158. #Navigation #link a :hover {
  159. opacity: 0.8;
  160. }
  161. #Navigation #link a:after {
  162. content: "";
  163. display: block;
  164. width: 80%;
  165. height: 3px;
  166. background-color: #fff;
  167. position: absolute;
  168. left: 12%;
  169. bottom: 0;
  170. -webkit-transition: all 0.3s;
  171. transition: all 0.3s;
  172. opacity: 0;
  173. }
  174. #Navigation #link a:hover:after {
  175. width: 80%;
  176. opacity: 1;
  177. }
  178. @media screen and (max-width: 1024px) {
  179. #Navigation #link a {
  180. padding: 5px;
  181. padding-top: 2vw;
  182. }
  183. }
  184. #Navigation #menu-btn1 {
  185. position: absolute;
  186. right: 1vw;
  187. top: 1vw;
  188. width: 18vw;
  189. z-index: 6;
  190. }
  191. @media screen and (min-width: 1025px) {
  192. #Navigation #menu-btn1 {
  193. display: none;
  194. }
  195. }
  196. @media screen and (min-width: 768px) {
  197. #Navigation #menu-btn1 {
  198. display: none;
  199. }
  200. }
  201. #banner {
  202. background-size: cover;
  203. background-repeat: no-repeat;
  204. background-position: center;
  205. background-image: url(./img/banner/coverwebp.webp);
  206. position: relative;
  207. }
  208. @media screen and (max-width: 767px) {
  209. #banner {
  210. background-image: none;
  211. height: 100vh;
  212. padding-bottom: 30vw;
  213. }
  214. }
  215. #banner .banner1 {
  216. width: 85vw;
  217. padding-top: 10vw;
  218. padding-bottom: 5vw;
  219. text-align: center;
  220. }
  221. #banner .banner1 a {
  222. text-decoration: none;
  223. }
  224. @media screen and (max-width: 1024px) {
  225. #banner .banner1 {
  226. width: 70vw;
  227. }
  228. }
  229. @media screen and (max-width: 767px) {
  230. #banner .banner1 {
  231. width: 100vw;
  232. padding-bottom: 10vw;
  233. padding-top: 20vw;
  234. }
  235. }
  236. @media screen and (max-width: 350px) {
  237. #banner .banner1 {
  238. padding-top: 20vw;
  239. }
  240. }
  241. @media screen and (min-width: 1025px) {
  242. #banner .banner1 #mobilecover {
  243. display: none;
  244. }
  245. }
  246. @media screen and (max-width: 1024px) {
  247. #banner .banner1 #mobilecover {
  248. display: none;
  249. }
  250. }
  251. @media screen and (max-width: 767px) {
  252. #banner .banner1 #mobilecover {
  253. display: block;
  254. width: 100vw;
  255. position: absolute;
  256. top: 35vw;
  257. z-index: -1;
  258. }
  259. }
  260. @media screen and (max-width: 350px) {
  261. #banner .banner1 #mobilecover {
  262. top: 35vw;
  263. padding-top: 12vw;
  264. }
  265. }
  266. #banner .banner1 h1 {
  267. font-size: 28px;
  268. font-weight: 900;
  269. color: #555555;
  270. margin: 3vw 0px;
  271. text-align: center;
  272. }
  273. @media screen and (max-width: 767px) {
  274. #banner .banner1 h1 {
  275. font-size: 0.8rem;
  276. }
  277. }
  278. #banner .banner1 #bannertitle {
  279. display: block;
  280. width: 40vw;
  281. margin: 0 auto;
  282. }
  283. @media screen and (max-width: 767px) {
  284. #banner .banner1 #bannertitle {
  285. width: 80vw;
  286. margin: 0 auto;
  287. }
  288. }
  289. #banner .banner1 .btn {
  290. display: block;
  291. margin: 0 auto;
  292. margin-top: 3vw;
  293. width: 15vw;
  294. border-radius: 30px;
  295. padding: 12px;
  296. background: #fff;
  297. color: #a9d0c5;
  298. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  299. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  300. border: 3px solid #a9d0c5;
  301. font-weight: 900;
  302. }
  303. @media screen and (max-width: 1024px) {
  304. #banner .banner1 .btn {
  305. width: 20vw;
  306. }
  307. }
  308. @media screen and (max-width: 767px) {
  309. #banner .banner1 .btn {
  310. display: none;
  311. }
  312. }
  313. .social-icons {
  314. position: fixed;
  315. left: 50px;
  316. bottom: 12.5rem;
  317. z-index: 10;
  318. display: -webkit-box;
  319. display: -ms-flexbox;
  320. display: flex;
  321. -webkit-box-orient: vertical;
  322. -webkit-box-direction: normal;
  323. -ms-flex-direction: column;
  324. flex-direction: column;
  325. }
  326. @media screen and (max-width: 1024px) {
  327. .social-icons {
  328. left: 30px;
  329. }
  330. }
  331. .social-icons a {
  332. text-decoration: none;
  333. display: block;
  334. margin-bottom: 10px;
  335. }
  336. .social-icons img {
  337. width: 15px;
  338. height: 15px;
  339. -o-object-fit: cover;
  340. object-fit: cover;
  341. }
  342. .scroll-txt {
  343. -webkit-transform: rotate(90deg);
  344. transform: rotate(90deg);
  345. position: fixed;
  346. left: 5px;
  347. bottom: 8rem;
  348. z-index: 3;
  349. font-size: 12px;
  350. color: #707070;
  351. }
  352. @media screen and (max-width: 1024px) {
  353. .scroll-txt {
  354. left: -2%;
  355. }
  356. }
  357. .scroll-txt p {
  358. font-weight: lighter;
  359. display: inline-block;
  360. position: relative;
  361. }
  362. .scroll-txt p::after {
  363. position: absolute;
  364. content: "";
  365. left: 110%;
  366. top: 5%;
  367. width: 6rem;
  368. height: 50%;
  369. border-bottom: 0.5px solid;
  370. }
  371. #trouble {
  372. padding-top: 10vw;
  373. background: #f4fffc;
  374. padding-bottom: 5vw !important;
  375. overflow: hidden;
  376. }
  377. @media screen and (max-width: 767px) {
  378. #trouble {
  379. padding-top: 10vw;
  380. }
  381. }
  382. @media screen and (min-height: 800px) {
  383. #trouble {
  384. padding-top: 0vw;
  385. }
  386. }
  387. #trouble #trouble-img {
  388. position: relative;
  389. z-index: 1;
  390. }
  391. #trouble #trouble-img #circle2 {
  392. position: absolute;
  393. top: 15vw;
  394. left: 45vw;
  395. width: 18vw;
  396. z-index: 0;
  397. -webkit-transition: 0.3s;
  398. transition: 0.3s;
  399. }
  400. @media screen and (max-width: 767px) {
  401. #trouble #trouble-img #circle2 {
  402. display: none;
  403. }
  404. }
  405. #trouble #trouble-img #circle3 {
  406. position: absolute;
  407. top: 55vw;
  408. width: 25vw;
  409. left: 10vw;
  410. z-index: 2;
  411. -webkit-transition: 0.3s;
  412. transition: 0.3s;
  413. }
  414. @media screen and (max-width: 767px) {
  415. #trouble #trouble-img #circle3 {
  416. display: none;
  417. }
  418. }
  419. #trouble #trouble-img .circle2 {
  420. position: absolute;
  421. width: 30vw;
  422. top: 5vw;
  423. right: 5vw;
  424. z-index: 0;
  425. }
  426. @media screen and (min-width: 768px) {
  427. #trouble #trouble-img .circle2 {
  428. display: none;
  429. }
  430. }
  431. @media screen and (min-width: 1025px) {
  432. #trouble #trouble-img .circle2 {
  433. display: none;
  434. }
  435. }
  436. #trouble #trouble-img .circle1 {
  437. position: absolute;
  438. width: 30vw;
  439. right: -15vw;
  440. top: 85vw;
  441. }
  442. @media screen and (min-width: 768px) {
  443. #trouble #trouble-img .circle1 {
  444. display: none;
  445. }
  446. }
  447. @media screen and (min-width: 1025px) {
  448. #trouble #trouble-img .circle1 {
  449. display: none;
  450. }
  451. }
  452. #trouble #trouble-img .circle3 {
  453. position: absolute;
  454. width: 40vw;
  455. top: 85vw;
  456. left: 5vw;
  457. z-index: 2;
  458. }
  459. @media screen and (min-width: 768px) {
  460. #trouble #trouble-img .circle3 {
  461. display: none;
  462. }
  463. }
  464. @media screen and (min-width: 1025px) {
  465. #trouble #trouble-img .circle3 {
  466. display: none;
  467. }
  468. }
  469. #trouble #img01 {
  470. -o-object-fit: cover;
  471. object-fit: cover;
  472. position: relative;
  473. z-index: 1;
  474. width: 60vw;
  475. padding: 10vw 0px;
  476. }
  477. @media screen and (max-width: 1024px) {
  478. #trouble #img01 {
  479. width: 55vw;
  480. }
  481. }
  482. @media screen and (max-width: 767px) {
  483. #trouble #img01 {
  484. width: 95vw;
  485. }
  486. }
  487. #trouble #trouble-text {
  488. padding-top: 20vw;
  489. position: relative;
  490. }
  491. #trouble #trouble-text #circle1 {
  492. position: absolute;
  493. width: 18vw;
  494. top: 35vw;
  495. right: 5vw;
  496. z-index: 0;
  497. -webkit-transition: 0.3s;
  498. transition: 0.3s;
  499. }
  500. @media screen and (max-width: 1024px) {
  501. #trouble #trouble-text #circle1 {
  502. top: 45vw;
  503. }
  504. }
  505. @media screen and (max-width: 767px) {
  506. #trouble #trouble-text #circle1 {
  507. display: none;
  508. }
  509. }
  510. #trouble #trouble-text .text-box {
  511. position: relative;
  512. margin-left: 5vw;
  513. z-index: 1;
  514. }
  515. #trouble #trouble-text .text-box h1 {
  516. padding-bottom: 3vw !important;
  517. }
  518. @media screen and (max-width: 767px) {
  519. #trouble #trouble-text .text-box h1 {
  520. font-size: 2.5rem;
  521. }
  522. }
  523. @media screen and (max-width: 350px) {
  524. #trouble #trouble-text .text-box h1 {
  525. font-size: 2rem;
  526. }
  527. }
  528. #trouble #trouble-text .text-box .text {
  529. font-size: 20px;
  530. color: #646464;
  531. padding: 3px 0px;
  532. letter-spacing: 0.5px;
  533. }
  534. @media screen and (max-width: 1024px) {
  535. #trouble #trouble-text .text-box .text {
  536. font-size: 16px;
  537. }
  538. }
  539. #Course-list {
  540. background: #f4fffc;
  541. text-align: center;
  542. position: relative;
  543. padding-bottom: 12vw !important;
  544. }
  545. @media screen and (max-width: 767px) {
  546. #Course-list {
  547. display: none;
  548. }
  549. }
  550. @media screen and (max-width: 1024px) {
  551. #Course-list {
  552. display: none;
  553. }
  554. }
  555. #Course-list .parallax {
  556. -webkit-transition: 1s;
  557. transition: 1s;
  558. -o-object-fit: contain;
  559. object-fit: contain;
  560. z-index: 0;
  561. }
  562. #Course-list .parallax .act {
  563. position: absolute;
  564. -webkit-transition: 0.5s;
  565. transition: 0.5s;
  566. }
  567. #Course-list .parallax img {
  568. position: absolute;
  569. -webkit-transition: 0.3s;
  570. transition: 0.3s;
  571. }
  572. #Course-list .parallax #act5 {
  573. left: 12vw;
  574. top: 33vw;
  575. width: 15vw;
  576. -webkit-transition: 0.5s;
  577. transition: 0.5s;
  578. }
  579. @media screen and (max-width: 1024px) {
  580. #Course-list .parallax #act5 {
  581. width: 18vw;
  582. top: 35vw;
  583. }
  584. }
  585. #Course-list .parallax #act4 {
  586. left: 13vw;
  587. top: 13vw;
  588. width: 18vw;
  589. -webkit-transition: 0.5s;
  590. transition: 0.5s;
  591. }
  592. @media screen and (max-width: 1024px) {
  593. #Course-list .parallax #act4 {
  594. width: 20vw;
  595. top: 15vw;
  596. }
  597. }
  598. #Course-list .parallax #act3 {
  599. left: 22vw;
  600. top: 8vw;
  601. width: 10vw;
  602. -webkit-transition: 0.5s;
  603. transition: 0.5s;
  604. }
  605. @media screen and (max-width: 1024px) {
  606. #Course-list .parallax #act3 {
  607. width: 15vw;
  608. top: 10vw;
  609. }
  610. }
  611. #Course-list .parallax #act2 {
  612. right: 9vw;
  613. top: 32vw;
  614. width: 19vw;
  615. -webkit-transition: 0.5s;
  616. transition: 0.5s;
  617. }
  618. @media screen and (max-width: 1024px) {
  619. #Course-list .parallax #act2 {
  620. width: 20vw;
  621. top: 35vw;
  622. }
  623. }
  624. #Course-list .parallax #act6 {
  625. left: 25vw;
  626. top: 13vw;
  627. width: 35vw;
  628. -webkit-transition: 0.5s;
  629. transition: 0.5s;
  630. }
  631. @media screen and (max-width: 1024px) {
  632. #Course-list .parallax #act6 {
  633. width: 40vw;
  634. top: 15vw;
  635. }
  636. }
  637. #Course-list .parallax #act1 {
  638. right: 14vw;
  639. top: 20vw;
  640. width: 15vw;
  641. -webkit-transition: 0.5s;
  642. transition: 0.5s;
  643. }
  644. @media screen and (max-width: 1024px) {
  645. #Course-list .parallax #act1 {
  646. width: 18vw;
  647. right: 10vw;
  648. top: 23vw;
  649. }
  650. }
  651. #Course-list #bg {
  652. width: 80vw;
  653. }
  654. @media screen and (max-width: 1024px) {
  655. #Course-list #bg {
  656. width: 90vw;
  657. }
  658. }
  659. #Course-list .title-main {
  660. font-family: 微軟正黑體;
  661. font-weight: 900;
  662. color: #646464;
  663. }
  664. #Course-list #Course-content {
  665. width: 65vw;
  666. margin: 10px auto;
  667. padding-top: -10vw;
  668. position: absolute;
  669. top: 15vw;
  670. left: 20vw;
  671. }
  672. @media screen and (max-width: 1024px) {
  673. #Course-list #Course-content {
  674. top: 22vw;
  675. }
  676. }
  677. #Course-list #Course-content .box1,
  678. #Course-list #Course-content .box2,
  679. #Course-list #Course-content .box3 {
  680. width: 20vw;
  681. background: #fff;
  682. border-radius: 8px;
  683. margin: 10px;
  684. }
  685. #Course-list #Course-content .box1:hover h2,
  686. #Course-list #Course-content .box2:hover h2,
  687. #Course-list #Course-content .box3:hover h2 {
  688. font-size: 1.3rem;
  689. }
  690. #Course-list #Course-content .box1:hover .box-img,
  691. #Course-list #Course-content .box2:hover .box-img,
  692. #Course-list #Course-content .box3:hover .box-img {
  693. padding-top: 0.95vw;
  694. background-image: url(./img/people.png);
  695. background-size: contain;
  696. background-repeat: no-repeat;
  697. }
  698. #Course-list #Course-content .box1:hover .box-img img,
  699. #Course-list #Course-content .box2:hover .box-img img,
  700. #Course-list #Course-content .box3:hover .box-img img {
  701. opacity: 0;
  702. }
  703. #Course-list #Course-content .box1 .box-img,
  704. #Course-list #Course-content .box2 .box-img,
  705. #Course-list #Course-content .box3 .box-img {
  706. margin: 20px;
  707. }
  708. #Course-list #Course-content .box1 .box-img img,
  709. #Course-list #Course-content .box2 .box-img img,
  710. #Course-list #Course-content .box3 .box-img img {
  711. padding: 3vw 0px;
  712. width: 10vw;
  713. -o-object-fit: cover;
  714. object-fit: cover;
  715. }
  716. #Course-list #Course-content .box1 .box-img2 img,
  717. #Course-list #Course-content .box2 .box-img2 img,
  718. #Course-list #Course-content .box3 .box-img2 img {
  719. width: 10vw;
  720. }
  721. #Course-list #Course-content .box1 h1,
  722. #Course-list #Course-content .box2 h1,
  723. #Course-list #Course-content .box3 h1 {
  724. padding-top: 2vw;
  725. font-family: 微軟正黑體;
  726. font-weight: 900;
  727. font-size: 1.8rem;
  728. color: #646464;
  729. }
  730. @media screen and (max-width: 1024px) {
  731. #Course-list #Course-content .box1 h1,
  732. #Course-list #Course-content .box2 h1,
  733. #Course-list #Course-content .box3 h1 {
  734. font-size: 1rem;
  735. }
  736. }
  737. #Course-list #Course-content .box1 h2,
  738. #Course-list #Course-content .box2 h2,
  739. #Course-list #Course-content .box3 h2 {
  740. font-size: 32px;
  741. color: #646464;
  742. }
  743. @media screen and (max-width: 1024px) {
  744. #Course-list #Course-content .box1 h2,
  745. #Course-list #Course-content .box2 h2,
  746. #Course-list #Course-content .box3 h2 {
  747. font-size: 1.5rem;
  748. }
  749. }
  750. #Course-box01,
  751. #Course-box02,
  752. #Course-box03 {
  753. background-color: rgba(0, 0, 0, 0.8);
  754. width: 100vw;
  755. height: 100vh;
  756. z-index: 12;
  757. padding: 50px 50px 100px 50px;
  758. position: fixed;
  759. top: 0vw;
  760. display: none;
  761. }
  762. @media screen and (max-width: 1024px) {
  763. #Course-box01,
  764. #Course-box02,
  765. #Course-box03 {
  766. padding: 50px 20px 100px 20px;
  767. }
  768. }
  769. #Course-box01 .close,
  770. #Course-box02 .close,
  771. #Course-box03 .close {
  772. position: absolute;
  773. right: 3vw;
  774. top: 1vw;
  775. }
  776. #Course-box01 .Course-box01,
  777. #Course-box02 .Course-box01,
  778. #Course-box03 .Course-box01 {
  779. background: #fff;
  780. width: 90vw;
  781. margin: 0 auto;
  782. }
  783. @media screen and (max-width: 1024px) {
  784. #Course-box01 .Course-box01,
  785. #Course-box02 .Course-box01,
  786. #Course-box03 .Course-box01 {
  787. width: 95vw;
  788. }
  789. }
  790. #Course-box01 .Course-box01 h1,
  791. #Course-box02 .Course-box01 h1,
  792. #Course-box03 .Course-box01 h1 {
  793. padding-top: 50px;
  794. text-align: center;
  795. font-family: 追奇手寫體;
  796. font-size: 4rem;
  797. color: #414346;
  798. }
  799. #Course-box01 .Course-box01 #box01,
  800. #Course-box01 .Course-box01 #box02,
  801. #Course-box01 .Course-box01 #box03,
  802. #Course-box02 .Course-box01 #box01,
  803. #Course-box02 .Course-box01 #box02,
  804. #Course-box02 .Course-box01 #box03,
  805. #Course-box03 .Course-box01 #box01,
  806. #Course-box03 .Course-box01 #box02,
  807. #Course-box03 .Course-box01 #box03 {
  808. width: 85vw;
  809. margin: 10px auto;
  810. padding: 10px 0px 80px 0px !important;
  811. }
  812. #Course-box01 .Course-box01 #box01 .card,
  813. #Course-box01 .Course-box01 #box02 .card,
  814. #Course-box01 .Course-box01 #box03 .card,
  815. #Course-box02 .Course-box01 #box01 .card,
  816. #Course-box02 .Course-box01 #box02 .card,
  817. #Course-box02 .Course-box01 #box03 .card,
  818. #Course-box03 .Course-box01 #box01 .card,
  819. #Course-box03 .Course-box01 #box02 .card,
  820. #Course-box03 .Course-box01 #box03 .card {
  821. width: 16vw;
  822. text-align: center;
  823. margin: 10px auto;
  824. -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.5);
  825. box-shadow: 0 5px 9px rgba(0, 0, 0, 0.5);
  826. background: #fff;
  827. border-radius: 8px;
  828. border: none !important;
  829. padding-left: 0 !important;
  830. padding-right: 0 !important;
  831. }
  832. @media screen and (max-width: 1024px) {
  833. #Course-box01 .Course-box01 #box01 .card,
  834. #Course-box01 .Course-box01 #box02 .card,
  835. #Course-box01 .Course-box01 #box03 .card,
  836. #Course-box02 .Course-box01 #box01 .card,
  837. #Course-box02 .Course-box01 #box02 .card,
  838. #Course-box02 .Course-box01 #box03 .card,
  839. #Course-box03 .Course-box01 #box01 .card,
  840. #Course-box03 .Course-box01 #box02 .card,
  841. #Course-box03 .Course-box01 #box03 .card {
  842. margin: 10px 3px;
  843. }
  844. }
  845. #Course-box01 .Course-box01 #box01 .card .card-title,
  846. #Course-box01 .Course-box01 #box02 .card .card-title,
  847. #Course-box01 .Course-box01 #box03 .card .card-title,
  848. #Course-box02 .Course-box01 #box01 .card .card-title,
  849. #Course-box02 .Course-box01 #box02 .card .card-title,
  850. #Course-box02 .Course-box01 #box03 .card .card-title,
  851. #Course-box03 .Course-box01 #box01 .card .card-title,
  852. #Course-box03 .Course-box01 #box02 .card .card-title,
  853. #Course-box03 .Course-box01 #box03 .card .card-title {
  854. padding: 30px 0px 20px 0px;
  855. font-weight: 900;
  856. color: #414346;
  857. font-size: 1.1rem;
  858. }
  859. @media screen and (max-width: 1024px) {
  860. #Course-box01 .Course-box01 #box01 .card .card-title,
  861. #Course-box01 .Course-box01 #box02 .card .card-title,
  862. #Course-box01 .Course-box01 #box03 .card .card-title,
  863. #Course-box02 .Course-box01 #box01 .card .card-title,
  864. #Course-box02 .Course-box01 #box02 .card .card-title,
  865. #Course-box02 .Course-box01 #box03 .card .card-title,
  866. #Course-box03 .Course-box01 #box01 .card .card-title,
  867. #Course-box03 .Course-box01 #box02 .card .card-title,
  868. #Course-box03 .Course-box01 #box03 .card .card-title {
  869. width: 18vw;
  870. font-size: 1rem;
  871. }
  872. }
  873. #Course-box01 .Course-box01 #box01 .card .box-img img,
  874. #Course-box01 .Course-box01 #box02 .card .box-img img,
  875. #Course-box01 .Course-box01 #box03 .card .box-img img,
  876. #Course-box02 .Course-box01 #box01 .card .box-img img,
  877. #Course-box02 .Course-box01 #box02 .card .box-img img,
  878. #Course-box02 .Course-box01 #box03 .card .box-img img,
  879. #Course-box03 .Course-box01 #box01 .card .box-img img,
  880. #Course-box03 .Course-box01 #box02 .card .box-img img,
  881. #Course-box03 .Course-box01 #box03 .card .box-img img {
  882. padding: 90px 30px 0px 30px;
  883. width: 10.5vw;
  884. height: 13vw;
  885. }
  886. @media screen and (max-width: 1024px) {
  887. #Course-box01 .Course-box01 #box01 .card .box-img img,
  888. #Course-box01 .Course-box01 #box02 .card .box-img img,
  889. #Course-box01 .Course-box01 #box03 .card .box-img img,
  890. #Course-box02 .Course-box01 #box01 .card .box-img img,
  891. #Course-box02 .Course-box01 #box02 .card .box-img img,
  892. #Course-box02 .Course-box01 #box03 .card .box-img img,
  893. #Course-box03 .Course-box01 #box01 .card .box-img img,
  894. #Course-box03 .Course-box01 #box02 .card .box-img img,
  895. #Course-box03 .Course-box01 #box03 .card .box-img img {
  896. width: 15vw;
  897. height: 20vw;
  898. padding: 90px 20px 0px 20px;
  899. }
  900. }
  901. #Course-box01 .Course-box01 #box01 .card .box-img2 img,
  902. #Course-box01 .Course-box01 #box02 .card .box-img2 img,
  903. #Course-box01 .Course-box01 #box03 .card .box-img2 img,
  904. #Course-box02 .Course-box01 #box01 .card .box-img2 img,
  905. #Course-box02 .Course-box01 #box02 .card .box-img2 img,
  906. #Course-box02 .Course-box01 #box03 .card .box-img2 img,
  907. #Course-box03 .Course-box01 #box01 .card .box-img2 img,
  908. #Course-box03 .Course-box01 #box02 .card .box-img2 img,
  909. #Course-box03 .Course-box01 #box03 .card .box-img2 img {
  910. padding: 90px 30px 0px 30px;
  911. width: 12vw;
  912. }
  913. @media screen and (max-width: 1024px) {
  914. #Course-box01 .Course-box01 #box01 .card .box-img2 img,
  915. #Course-box01 .Course-box01 #box02 .card .box-img2 img,
  916. #Course-box01 .Course-box01 #box03 .card .box-img2 img,
  917. #Course-box02 .Course-box01 #box01 .card .box-img2 img,
  918. #Course-box02 .Course-box01 #box02 .card .box-img2 img,
  919. #Course-box02 .Course-box01 #box03 .card .box-img2 img,
  920. #Course-box03 .Course-box01 #box01 .card .box-img2 img,
  921. #Course-box03 .Course-box01 #box02 .card .box-img2 img,
  922. #Course-box03 .Course-box01 #box03 .card .box-img2 img {
  923. width: 15vw;
  924. padding: 90px 15px 0px 15px;
  925. }
  926. }
  927. #Course-box03 .card {
  928. width: 25vw !important;
  929. }
  930. .sec04 {
  931. text-align: center;
  932. padding-top: 4.5rem;
  933. padding-bottom: 10rem !important;
  934. color: #646464;
  935. overflow: hidden;
  936. position: relative;
  937. }
  938. @media screen and (min-width: 1025px) {
  939. .sec04 {
  940. display: none;
  941. }
  942. }
  943. .sec04 .element1 {
  944. position: absolute;
  945. top: 150vw;
  946. width: 70vw;
  947. right: -30vw;
  948. z-index: 1;
  949. }
  950. @media screen and (max-width: 350px) {
  951. .sec04 .element1 {
  952. top: 180vw;
  953. }
  954. }
  955. .sec04 #card-box {
  956. background-image: url(./img/Course-list/bg.png);
  957. background-size: cover;
  958. background-repeat: no-repeat;
  959. background-position: 40% 50%;
  960. }
  961. @media screen and (min-width: 767px) {
  962. .sec04 #card-box {
  963. padding-top: 15vw;
  964. }
  965. }
  966. .sec04 #card-box .slick-slide {
  967. outline: none !important;
  968. }
  969. .sec04 #card-box .slick-dots {
  970. margin-top: 50px;
  971. }
  972. .sec04 #card-box .slick-dots li {
  973. margin: 0 10px;
  974. }
  975. .sec04 #card-box .slick-dots button {
  976. margin-top: 10px;
  977. display: block;
  978. width: 30px;
  979. height: 3px;
  980. padding: 0;
  981. border: none;
  982. border-radius: 0%;
  983. background-color: #d9d9d9;
  984. text-indent: -9999px;
  985. }
  986. .sec04 #card-box .slick-dots li.slick-active button {
  987. background-color: #fce49d;
  988. }
  989. .sec04 #card-box .card {
  990. text-align: center;
  991. margin: 0px 10px;
  992. position: relative;
  993. z-index: 2;
  994. }
  995. .sec04 #card-box .card .card-title {
  996. padding-top: 2rem;
  997. color: #646464;
  998. }
  999. @media screen and (max-width: 1024px) {
  1000. .sec04 #card-box .card .card-title {
  1001. font-size: 1.5rem;
  1002. }
  1003. }
  1004. @media screen and (max-width: 350px) {
  1005. .sec04 #card-box .card .card-title {
  1006. font-size: 1.8rem;
  1007. }
  1008. }
  1009. .sec04 #card-box .card h2 {
  1010. color: #646464;
  1011. font-size: 1.3rem;
  1012. }
  1013. @media screen and (max-width: 1024px) {
  1014. .sec04 #card-box .card h2 {
  1015. font-size: 1rem;
  1016. }
  1017. }
  1018. @media screen and (max-width: 350px) {
  1019. .sec04 #card-box .card h2 {
  1020. font-size: 1rem;
  1021. }
  1022. }
  1023. .sec04 #card-box .card img {
  1024. margin: 0 auto;
  1025. }
  1026. @media screen and (min-width: 768px) {
  1027. .sec04 #card-box .card .box-img01 img, .sec04 #card-box .card .box-img02 img, .sec04 #card-box .card .box-img03 img {
  1028. width: 20vw;
  1029. }
  1030. }
  1031. @media screen and (max-width: 1024px) {
  1032. .sec04 .name {
  1033. font-size: 3rem;
  1034. }
  1035. }
  1036. @media screen and (min-width: 1000px) {
  1037. .sec04 {
  1038. display: none;
  1039. }
  1040. }
  1041. @media screen and (max-width: 767px) {
  1042. .sec04 .name {
  1043. padding-bottom: 2rem;
  1044. font-size: 4rem;
  1045. }
  1046. }
  1047. @media screen and (max-width: 400px) {
  1048. .sec04 .name {
  1049. padding-bottom: 2rem;
  1050. font-size: 3rem;
  1051. }
  1052. }
  1053. .mobile01-1,
  1054. .mobile01-2,
  1055. .mobile01-3 {
  1056. width: 100vw;
  1057. height: 100vh;
  1058. background-color: rgba(0, 0, 0, 0.8);
  1059. position: fixed;
  1060. top: 0vw;
  1061. z-index: 10;
  1062. padding: 15vw 1vw 15vw 1vw;
  1063. overflow: hidden;
  1064. margin: 0 !important;
  1065. display: none;
  1066. }
  1067. @media screen and (min-width: 1025px) {
  1068. .mobile01-1,
  1069. .mobile01-2,
  1070. .mobile01-3 {
  1071. display: none;
  1072. }
  1073. }
  1074. .mobile01-1 .mobile-box1,
  1075. .mobile01-1 .mobile-box2,
  1076. .mobile01-1 .mobile-box3,
  1077. .mobile01-2 .mobile-box1,
  1078. .mobile01-2 .mobile-box2,
  1079. .mobile01-2 .mobile-box3,
  1080. .mobile01-3 .mobile-box1,
  1081. .mobile01-3 .mobile-box2,
  1082. .mobile01-3 .mobile-box3 {
  1083. height: 80vh;
  1084. }
  1085. .mobile01-1 .mobile-box1 .close,
  1086. .mobile01-1 .mobile-box2 .close,
  1087. .mobile01-1 .mobile-box3 .close,
  1088. .mobile01-2 .mobile-box1 .close,
  1089. .mobile01-2 .mobile-box2 .close,
  1090. .mobile01-2 .mobile-box3 .close,
  1091. .mobile01-3 .mobile-box1 .close,
  1092. .mobile01-3 .mobile-box2 .close,
  1093. .mobile01-3 .mobile-box3 .close {
  1094. position: absolute;
  1095. right: 5vw;
  1096. top: 5vw;
  1097. }
  1098. .mobile01-1 .mobile-box1 .Course-mobile01,
  1099. .mobile01-1 .mobile-box2 .Course-mobile01,
  1100. .mobile01-1 .mobile-box3 .Course-mobile01,
  1101. .mobile01-2 .mobile-box1 .Course-mobile01,
  1102. .mobile01-2 .mobile-box2 .Course-mobile01,
  1103. .mobile01-2 .mobile-box3 .Course-mobile01,
  1104. .mobile01-3 .mobile-box1 .Course-mobile01,
  1105. .mobile01-3 .mobile-box2 .Course-mobile01,
  1106. .mobile01-3 .mobile-box3 .Course-mobile01 {
  1107. background: #fff;
  1108. width: 90vw;
  1109. height: 85vh;
  1110. margin: 0 auto;
  1111. border-radius: 5px;
  1112. font-size: 0.9rem;
  1113. }
  1114. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots,
  1115. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots,
  1116. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots,
  1117. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots,
  1118. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots,
  1119. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots,
  1120. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots,
  1121. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots,
  1122. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots {
  1123. width: 80%;
  1124. }
  1125. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots li,
  1126. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots li,
  1127. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots li,
  1128. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots li,
  1129. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots li,
  1130. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots li,
  1131. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots li,
  1132. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots li,
  1133. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots li {
  1134. margin: 0 10px;
  1135. }
  1136. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots button,
  1137. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots button,
  1138. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots button,
  1139. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots button,
  1140. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots button,
  1141. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots button,
  1142. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots button,
  1143. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots button,
  1144. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots button {
  1145. margin-top: 10px;
  1146. display: block;
  1147. width: 30px;
  1148. height: 3px;
  1149. padding: 0;
  1150. border: none;
  1151. border-radius: 0%;
  1152. background-color: #d9d9d9;
  1153. text-indent: -9999px;
  1154. }
  1155. .mobile01-1 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1156. .mobile01-1 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1157. .mobile01-1 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button,
  1158. .mobile01-2 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1159. .mobile01-2 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1160. .mobile01-2 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button,
  1161. .mobile01-3 .mobile-box1 .Course-mobile01 .slick-dots li.slick-active button,
  1162. .mobile01-3 .mobile-box2 .Course-mobile01 .slick-dots li.slick-active button,
  1163. .mobile01-3 .mobile-box3 .Course-mobile01 .slick-dots li.slick-active button {
  1164. background-color: #fce49d;
  1165. }
  1166. .mobile01-1 .mobile-box1 .Course-mobile01 h1,
  1167. .mobile01-1 .mobile-box2 .Course-mobile01 h1,
  1168. .mobile01-1 .mobile-box3 .Course-mobile01 h1,
  1169. .mobile01-2 .mobile-box1 .Course-mobile01 h1,
  1170. .mobile01-2 .mobile-box2 .Course-mobile01 h1,
  1171. .mobile01-2 .mobile-box3 .Course-mobile01 h1,
  1172. .mobile01-3 .mobile-box1 .Course-mobile01 h1,
  1173. .mobile01-3 .mobile-box2 .Course-mobile01 h1,
  1174. .mobile01-3 .mobile-box3 .Course-mobile01 h1 {
  1175. padding-top: 10vw;
  1176. text-align: center;
  1177. font-family: 追奇手寫體;
  1178. font-size: 2.5rem;
  1179. color: #414346;
  1180. }
  1181. @media screen and (max-width: 1024px) {
  1182. .mobile01-1 .mobile-box1 .Course-mobile01 h1,
  1183. .mobile01-1 .mobile-box2 .Course-mobile01 h1,
  1184. .mobile01-1 .mobile-box3 .Course-mobile01 h1,
  1185. .mobile01-2 .mobile-box1 .Course-mobile01 h1,
  1186. .mobile01-2 .mobile-box2 .Course-mobile01 h1,
  1187. .mobile01-2 .mobile-box3 .Course-mobile01 h1,
  1188. .mobile01-3 .mobile-box1 .Course-mobile01 h1,
  1189. .mobile01-3 .mobile-box2 .Course-mobile01 h1,
  1190. .mobile01-3 .mobile-box3 .Course-mobile01 h1 {
  1191. font-size: 3rem;
  1192. }
  1193. }
  1194. @media screen and (max-width: 400px) {
  1195. .mobile01-1 .mobile-box1 .Course-mobile01 h1,
  1196. .mobile01-1 .mobile-box2 .Course-mobile01 h1,
  1197. .mobile01-1 .mobile-box3 .Course-mobile01 h1,
  1198. .mobile01-2 .mobile-box1 .Course-mobile01 h1,
  1199. .mobile01-2 .mobile-box2 .Course-mobile01 h1,
  1200. .mobile01-2 .mobile-box3 .Course-mobile01 h1,
  1201. .mobile01-3 .mobile-box1 .Course-mobile01 h1,
  1202. .mobile01-3 .mobile-box2 .Course-mobile01 h1,
  1203. .mobile01-3 .mobile-box3 .Course-mobile01 h1 {
  1204. font-size: 2rem;
  1205. }
  1206. }
  1207. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1,
  1208. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2,
  1209. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3,
  1210. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1,
  1211. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2,
  1212. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3,
  1213. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1,
  1214. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2,
  1215. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3,
  1216. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1,
  1217. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2,
  1218. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3,
  1219. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1,
  1220. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2,
  1221. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3,
  1222. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1,
  1223. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2,
  1224. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3,
  1225. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1,
  1226. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2,
  1227. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3,
  1228. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1,
  1229. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2,
  1230. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3,
  1231. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1,
  1232. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2,
  1233. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 {
  1234. padding: 1vw 20px 1vw 20px;
  1235. }
  1236. @media screen and (max-width: 350px) {
  1237. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1,
  1238. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2,
  1239. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3,
  1240. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1,
  1241. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2,
  1242. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3,
  1243. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1,
  1244. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2,
  1245. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3,
  1246. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1,
  1247. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2,
  1248. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3,
  1249. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1,
  1250. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2,
  1251. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3,
  1252. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1,
  1253. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2,
  1254. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3,
  1255. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1,
  1256. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2,
  1257. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3,
  1258. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1,
  1259. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2,
  1260. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3,
  1261. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1,
  1262. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2,
  1263. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 {
  1264. padding: 1vw 0px 1vw 0px;
  1265. }
  1266. }
  1267. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1268. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1269. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1270. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1271. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1272. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1273. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1274. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1275. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1276. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1277. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1278. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1279. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1280. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1281. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1282. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1283. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1284. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1285. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1286. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1287. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1288. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1289. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1290. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1291. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1292. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1293. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1294. text-align: center;
  1295. margin: 0px 10px;
  1296. }
  1297. @media screen and (max-width: 1024px) {
  1298. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1299. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1300. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1301. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1302. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1303. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1304. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1305. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1306. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1307. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1308. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1309. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1310. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1311. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1312. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1313. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1314. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1315. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1316. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1317. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1318. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1319. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1320. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1321. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1322. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1323. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1324. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1325. font-size: 1.5rem;
  1326. }
  1327. }
  1328. @media screen and (max-width: 767px) {
  1329. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1330. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1331. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1332. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1333. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1334. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1335. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1336. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1337. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1338. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1339. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1340. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1341. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1342. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1343. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1344. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1345. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1346. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1347. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1348. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1349. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1350. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1351. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1352. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1353. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1354. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1355. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1356. font-size: 0.9rem;
  1357. }
  1358. }
  1359. @media screen and (max-width: 400px) {
  1360. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1361. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1362. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1363. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1364. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1365. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1366. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1367. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1368. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1369. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1370. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1371. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1372. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1373. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1374. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1375. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1376. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1377. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card,
  1378. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card,
  1379. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card,
  1380. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card,
  1381. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card,
  1382. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card,
  1383. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card,
  1384. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card,
  1385. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card,
  1386. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card {
  1387. font-size: 0.7rem;
  1388. }
  1389. }
  1390. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1391. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1392. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1393. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1394. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1395. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1396. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1397. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1398. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1399. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1400. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1401. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1402. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1403. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1404. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1405. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1406. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1407. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1408. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1409. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1410. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1411. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1412. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1413. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1414. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1415. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1416. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1417. padding-top: 1rem;
  1418. font-weight: 900;
  1419. color: #414346;
  1420. font-size: 1.3rem;
  1421. }
  1422. @media screen and (max-width: 1024px) {
  1423. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1424. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1425. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1426. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1427. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1428. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1429. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1430. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1431. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1432. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1433. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1434. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1435. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1436. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1437. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1438. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1439. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1440. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1441. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1442. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1443. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1444. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1445. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1446. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1447. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1448. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1449. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1450. font-size: 2rem;
  1451. }
  1452. }
  1453. @media screen and (max-width: 767px) {
  1454. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1455. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1456. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1457. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1458. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1459. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1460. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1461. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1462. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1463. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1464. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1465. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1466. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1467. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1468. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1469. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1470. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1471. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1472. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1473. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1474. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1475. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1476. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1477. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1478. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1479. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1480. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1481. font-size: 1.3rem;
  1482. }
  1483. }
  1484. @media screen and (max-width: 400px) {
  1485. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1486. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1487. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1488. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1489. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1490. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1491. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1492. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1493. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1494. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1495. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1496. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1497. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1498. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1499. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1500. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1501. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1502. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title,
  1503. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .card-title,
  1504. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .card-title,
  1505. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .card-title,
  1506. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .card-title,
  1507. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title,
  1508. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .card-title,
  1509. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .card-title,
  1510. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .card-title,
  1511. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1512. font-size: 1rem;
  1513. }
  1514. }
  1515. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1516. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1517. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1518. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1519. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1520. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1521. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1522. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1523. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card img,
  1524. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1525. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1526. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1527. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1528. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1529. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1530. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1531. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1532. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card img,
  1533. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card img,
  1534. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card img,
  1535. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card img,
  1536. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card img,
  1537. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card img,
  1538. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card img,
  1539. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card img,
  1540. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card img,
  1541. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card img {
  1542. margin: 0 auto;
  1543. }
  1544. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1545. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1546. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1547. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1548. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1549. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1550. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1551. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1552. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1553. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1554. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1555. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1556. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1557. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1558. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1559. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1560. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1561. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1562. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1563. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1564. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1565. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1566. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1567. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1568. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1569. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1570. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1571. width: 43vw;
  1572. height: 53vw;
  1573. padding: 15vw 12vw;
  1574. }
  1575. @media screen and (max-width: 400px) {
  1576. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1577. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1578. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1579. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1580. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1581. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1582. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1583. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1584. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1585. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1586. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1587. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1588. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1589. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1590. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1591. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1592. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1593. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img,
  1594. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img img,
  1595. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img img,
  1596. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img img,
  1597. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img img,
  1598. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img,
  1599. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img img,
  1600. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img img,
  1601. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img img,
  1602. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1603. padding: 13vw 10vw;
  1604. height: 51vw;
  1605. }
  1606. }
  1607. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1608. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1609. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1610. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1611. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1612. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1613. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1614. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1615. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1616. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1617. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1618. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1619. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1620. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1621. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1622. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1623. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1624. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1625. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1626. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1627. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1628. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1629. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1630. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1631. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1632. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1633. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1634. padding-top: 20vw;
  1635. width: 40vw;
  1636. }
  1637. @media screen and (min-width: 767px) {
  1638. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1639. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1640. .mobile01-1 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1641. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1642. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1643. .mobile01-1 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1644. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1645. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1646. .mobile01-1 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1647. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1648. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1649. .mobile01-2 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1650. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1651. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1652. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1653. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1654. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1655. .mobile01-2 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1656. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1657. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1658. .mobile01-3 .mobile-box1 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1659. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1660. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1661. .mobile01-3 .mobile-box2 .Course-mobile01 .card-box-3 .card .box-img2 img,
  1662. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-1 .card .box-img2 img,
  1663. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-2 .card .box-img2 img,
  1664. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1665. padding-top: 5vw;
  1666. }
  1667. }
  1668. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1669. margin: 0px 10px;
  1670. font-size: 1rem;
  1671. }
  1672. @media screen and (max-width: 1024px) {
  1673. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1674. font-size: 1.5rem;
  1675. }
  1676. }
  1677. @media screen and (max-width: 767px) {
  1678. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1679. font-size: 1rem;
  1680. }
  1681. }
  1682. @media screen and (max-width: 400px) {
  1683. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1684. font-size: 0.8rem;
  1685. }
  1686. }
  1687. @media screen and (max-width: 350px) {
  1688. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card {
  1689. font-size: 0.7rem;
  1690. }
  1691. }
  1692. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1693. padding-top: 20vw;
  1694. width: 40vw;
  1695. }
  1696. @media screen and (min-width: 767px) {
  1697. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1698. padding-top: 5vw;
  1699. }
  1700. }
  1701. @media screen and (max-width: 767px) {
  1702. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1703. padding-top: 5vw;
  1704. }
  1705. }
  1706. @media screen and (max-width: 350px) {
  1707. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img2 img {
  1708. padding-top: 15vw;
  1709. }
  1710. }
  1711. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img {
  1712. width: 43vw;
  1713. height: 50vw;
  1714. padding: 15vw 12vw;
  1715. }
  1716. @media screen and (max-width: 350px) {
  1717. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .box-img img {
  1718. padding: 12vw 10vw;
  1719. }
  1720. }
  1721. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1722. padding-top: 1rem;
  1723. font-weight: 900;
  1724. color: #414346;
  1725. font-size: 1.3rem;
  1726. }
  1727. @media screen and (max-width: 1024px) {
  1728. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1729. font-size: 2rem;
  1730. }
  1731. }
  1732. @media screen and (max-width: 767px) {
  1733. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1734. font-size: 1rem;
  1735. }
  1736. }
  1737. @media screen and (max-width: 400px) {
  1738. .mobile01-2 .mobile-box2 .Course-mobile01 .card-box-2 .card .card-title {
  1739. font-size: 1rem;
  1740. }
  1741. }
  1742. @media screen and (min-width: 1024px) {
  1743. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 {
  1744. height: 691px;
  1745. }
  1746. }
  1747. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1748. width: 43vw;
  1749. height: 50vw;
  1750. padding: 15vw 12vw;
  1751. }
  1752. @media screen and (max-width: 350px) {
  1753. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img img {
  1754. padding: 10vw 10vw;
  1755. }
  1756. }
  1757. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1758. padding-top: 20vw;
  1759. width: 40vw;
  1760. }
  1761. @media screen and (max-width: 1024px) {
  1762. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1763. padding-top: 4vw;
  1764. }
  1765. }
  1766. @media screen and (max-width: 767px) {
  1767. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1768. padding-top: 10vw;
  1769. }
  1770. }
  1771. @media screen and (max-width: 350px) {
  1772. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .box-img2 img {
  1773. padding-top: 5vw;
  1774. }
  1775. }
  1776. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1777. padding-top: 1rem;
  1778. font-weight: 900;
  1779. color: #414346;
  1780. font-size: 1.3rem;
  1781. }
  1782. @media screen and (max-width: 1024px) {
  1783. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1784. font-size: 2rem;
  1785. }
  1786. }
  1787. @media screen and (max-width: 767px) {
  1788. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1789. font-size: 1.3rem;
  1790. }
  1791. }
  1792. @media screen and (max-width: 400px) {
  1793. .mobile01-3 .mobile-box3 .Course-mobile01 .card-box-3 .card .card-title {
  1794. font-size: 1rem;
  1795. }
  1796. }
  1797. #course-schedule {
  1798. background: #f4fffc;
  1799. text-align: center;
  1800. padding-bottom: 12vw !important;
  1801. position: relative;
  1802. overflow: hidden;
  1803. }
  1804. #course-schedule #arrow-right {
  1805. position: absolute;
  1806. top: 12vw;
  1807. right: 21vw;
  1808. width: 45px;
  1809. }
  1810. @media screen and (max-width: 1024px) {
  1811. #course-schedule #arrow-right {
  1812. width: 40px;
  1813. right: 20vw;
  1814. }
  1815. }
  1816. #course-schedule #arrow-left {
  1817. position: absolute;
  1818. top: 12vw;
  1819. left: 21vw;
  1820. width: 45px;
  1821. }
  1822. @media screen and (max-width: 1024px) {
  1823. #course-schedule #arrow-left {
  1824. width: 40px;
  1825. }
  1826. }
  1827. #course-schedule #element1 {
  1828. position: absolute;
  1829. top: 0vw;
  1830. width: 25vw;
  1831. right: -10vw;
  1832. }
  1833. #course-schedule #element2 {
  1834. position: absolute;
  1835. width: 25vw;
  1836. left: -10vw;
  1837. top: 50vw;
  1838. z-index: 5;
  1839. }
  1840. @media screen and (max-width: 767px) {
  1841. #course-schedule {
  1842. display: none;
  1843. }
  1844. }
  1845. #course-schedule #bg2 {
  1846. width: 80vw;
  1847. }
  1848. @media screen and (max-width: 1024px) {
  1849. #course-schedule #bg2 {
  1850. width: 90vw;
  1851. }
  1852. }
  1853. #course-schedule #schedule-content {
  1854. position: absolute;
  1855. width: 70vw;
  1856. top: 20vw;
  1857. left: 15vw;
  1858. }
  1859. @media screen and (max-width: 1024px) {
  1860. #course-schedule #schedule-content {
  1861. top: 25vw;
  1862. }
  1863. }
  1864. #course-schedule #schedule-content .schedule-box {
  1865. text-align: center;
  1866. }
  1867. #course-schedule #schedule-content .schedule-box h1 {
  1868. font-size: 24px;
  1869. font-weight: 900;
  1870. color: #fff;
  1871. }
  1872. @media screen and (max-width: 1024px) {
  1873. #course-schedule #schedule-content .schedule-box h1 {
  1874. font-size: 20px;
  1875. }
  1876. }
  1877. #course-schedule #schedule-content .schedule-box .content-box {
  1878. width: 18vw;
  1879. height: 10vw;
  1880. margin: 30px auto;
  1881. background: #fff;
  1882. border: 1.5px solid #707070;
  1883. border-radius: 5px;
  1884. color: #646464;
  1885. line-height: 10vw;
  1886. font-size: 18px;
  1887. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1888. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  1889. }
  1890. @media screen and (max-width: 1024px) {
  1891. #course-schedule #schedule-content .schedule-box .content-box {
  1892. font-size: 0.9rem;
  1893. padding: 1vw;
  1894. line-height: 8vw;
  1895. }
  1896. }
  1897. #course-schedule #schedule-content .schedule-box .content-box1 {
  1898. width: 18vw;
  1899. height: 10vw;
  1900. margin: 30px auto;
  1901. background: #fff;
  1902. border: 1.5px solid #707070;
  1903. border-radius: 5px;
  1904. font-size: 18px;
  1905. padding: 2vw;
  1906. color: #646464;
  1907. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  1908. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  1909. }
  1910. @media screen and (max-width: 1024px) {
  1911. #course-schedule #schedule-content .schedule-box .content-box1 {
  1912. font-size: 0.9rem;
  1913. padding: 1vw;
  1914. }
  1915. }
  1916. .sec05 {
  1917. text-align: center;
  1918. padding-top: 4.5rem;
  1919. padding-bottom: 8rem;
  1920. color: #646464;
  1921. padding-bottom: 8rem !important;
  1922. overflow: hidden;
  1923. position: relative;
  1924. }
  1925. @media screen and (min-width: 768px) {
  1926. .sec05 {
  1927. display: none;
  1928. }
  1929. }
  1930. .sec05 .element2 {
  1931. position: absolute;
  1932. width: 70vw;
  1933. left: -30vw;
  1934. top: 140vw;
  1935. z-index: 3;
  1936. }
  1937. @media screen and (max-width: 350px) {
  1938. .sec05 .element2 {
  1939. top: 152vw;
  1940. }
  1941. }
  1942. @media screen and (min-width: 1025px) {
  1943. .sec05 {
  1944. display: none;
  1945. }
  1946. }
  1947. .sec05 .line {
  1948. margin-bottom: 10vw;
  1949. }
  1950. .sec05 #card-box2 {
  1951. background-image: url(./img/course-schedule/bg2.png);
  1952. background-size: 155%;
  1953. background-repeat: no-repeat;
  1954. background-position: 50% 50%;
  1955. position: relative;
  1956. }
  1957. .sec05 #card-box2 .slick-slide {
  1958. outline: none !important;
  1959. }
  1960. .sec05 #card-box2 .slick-dots {
  1961. margin-top: 10px;
  1962. }
  1963. .sec05 #card-box2 .slick-dots li {
  1964. margin: 0 10px;
  1965. }
  1966. .sec05 #card-box2 .slick-dots button {
  1967. display: block;
  1968. width: 30px;
  1969. height: 3px;
  1970. padding: 0;
  1971. border: none;
  1972. border-radius: 0%;
  1973. background-color: #d9d9d9;
  1974. text-indent: -9999px;
  1975. }
  1976. .sec05 #card-box2 .slick-dots li.slick-active button {
  1977. background-color: #fce49d;
  1978. }
  1979. .sec05 #card-box2 .arrow-left {
  1980. position: absolute;
  1981. left: 76vw;
  1982. top: 45vw;
  1983. z-index: 5;
  1984. width: 10vw !important;
  1985. height: 40vw;
  1986. }
  1987. @media screen and (max-width: 350px) {
  1988. .sec05 #card-box2 .arrow-left {
  1989. top: 50vw;
  1990. left: 70vw;
  1991. }
  1992. }
  1993. .sec05 #card-box2 .arrow-right {
  1994. position: absolute;
  1995. left: 155vw;
  1996. top: 45vw;
  1997. z-index: 5;
  1998. width: 10vw !important;
  1999. height: 40vw;
  2000. }
  2001. @media screen and (max-width: 350px) {
  2002. .sec05 #card-box2 .arrow-right {
  2003. top: 50vw;
  2004. left: 150vw;
  2005. }
  2006. }
  2007. .sec05 #card-box2 .box {
  2008. padding-bottom: 5vw !important;
  2009. }
  2010. .sec05 #card-box2 .box .boxs-chedule1 {
  2011. padding-bottom: 20vw;
  2012. }
  2013. .sec05 #card-box2 .box .boxs-chedule1 h1 {
  2014. color: #70b2a0;
  2015. text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
  2016. }
  2017. .sec05 #card-box2 .box .boxs-chedule2 h1 {
  2018. color: #fff;
  2019. text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
  2020. }
  2021. .sec05 #card-box2 .box .boxs-chedule1,
  2022. .sec05 #card-box2 .box .boxs-chedule2 {
  2023. margin: 0px 30px;
  2024. color: #646464;
  2025. font-weight: 900;
  2026. }
  2027. .sec05 #card-box2 .box .boxs-chedule1 h1,
  2028. .sec05 #card-box2 .box .boxs-chedule2 h1 {
  2029. padding-bottom: 5vw;
  2030. font-family: "Noto Sans TC", sans-serif;
  2031. font-weight: 600;
  2032. }
  2033. .sec05 #card-box2 .box .boxs-chedule1 .card,
  2034. .sec05 #card-box2 .box .boxs-chedule2 .card {
  2035. padding: 30px 20px;
  2036. border: 2px solid #707070 !important;
  2037. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  2038. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  2039. }
  2040. #information {
  2041. text-align: center;
  2042. background: #f4fffc;
  2043. color: #646464;
  2044. position: relative;
  2045. padding-bottom: 650px;
  2046. }
  2047. @media screen and (max-width: 1024px) {
  2048. #information {
  2049. padding-bottom: 75vw;
  2050. }
  2051. }
  2052. @media screen and (max-width: 767px) {
  2053. #information {
  2054. display: none;
  2055. }
  2056. }
  2057. #information #bg3 {
  2058. width: 80vw;
  2059. }
  2060. @media screen and (max-width: 1024px) {
  2061. #information #bg3 {
  2062. width: 90vw;
  2063. }
  2064. }
  2065. #information .information {
  2066. position: absolute;
  2067. text-align: left;
  2068. font-size: 1.6rem;
  2069. line-height: 3vw;
  2070. top: 15vw;
  2071. left: 20vw;
  2072. width: 50vw;
  2073. }
  2074. @media screen and (max-width: 1024px) {
  2075. #information .information {
  2076. font-size: 1rem;
  2077. line-height: 3vw;
  2078. }
  2079. }
  2080. #information .information a {
  2081. color: #646464;
  2082. }
  2083. #information #information-form {
  2084. position: absolute;
  2085. top: 40vw;
  2086. }
  2087. #information #information-form #form-card {
  2088. width: 80vw;
  2089. margin: 0 auto;
  2090. }
  2091. #information #information-form #form-card .contact-form #name,
  2092. #information #information-form #form-card .contact-form #company {
  2093. width: 100%;
  2094. padding: 10px 15px;
  2095. font-size: 16px;
  2096. border-radius: 3px;
  2097. margin: 10px 0px;
  2098. border: 1px solid rgba(0, 0, 0, 0.3);
  2099. }
  2100. @media screen and (max-width: 1024px) {
  2101. #information #information-form #form-card .contact-form #name,
  2102. #information #information-form #form-card .contact-form #company {
  2103. width: 100%;
  2104. }
  2105. }
  2106. #information #information-form #form-card .contact-form #phone,
  2107. #information #information-form #form-card .contact-form #email,
  2108. #information #information-form #form-card .contact-form #pay,
  2109. #information #information-form #form-card .contact-form #message,
  2110. #information #information-form #form-card .contact-form #message1,
  2111. #information #information-form #form-card .contact-form #profession,
  2112. #information #information-form #form-card .contact-form #line {
  2113. width: 100%;
  2114. padding: 10px 15px;
  2115. font-size: 16px;
  2116. border-radius: 3px;
  2117. margin: 10px 0px;
  2118. border: 1px solid rgba(0, 0, 0, 0.3);
  2119. }
  2120. #information #information-form #form-card .contact-form .btn {
  2121. margin-top: 3vw;
  2122. width: 15vw;
  2123. border-radius: 30px;
  2124. padding: 15px;
  2125. background: #fff;
  2126. color: #a9d0c5;
  2127. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2128. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2129. border: 2px solid #a9d0c5;
  2130. font-weight: 900;
  2131. }
  2132. #information #information-form #form-card .contact-form .btn:hover {
  2133. background: #a9d0c5;
  2134. color: #fff;
  2135. }
  2136. #information #map {
  2137. border: 1px solid rgba(0, 0, 0, 0.3);
  2138. border-radius: 10px;
  2139. width: 38vw !important;
  2140. }
  2141. #information #map #googlemap {
  2142. padding-top: 1vw !important;
  2143. width: 35vw;
  2144. height: 800px;
  2145. }
  2146. #information-mobile {
  2147. text-align: center;
  2148. }
  2149. @media screen and (min-width: 1025px) {
  2150. #information-mobile {
  2151. display: none;
  2152. }
  2153. }
  2154. @media screen and (min-width: 768px) {
  2155. #information-mobile {
  2156. display: none;
  2157. }
  2158. }
  2159. #information-mobile .information {
  2160. background-image: url(./img/information/bg3.png);
  2161. background-size: 175%;
  2162. background-repeat: no-repeat;
  2163. background-position: bottom center;
  2164. text-align: left;
  2165. color: #646464;
  2166. font-size: 1rem;
  2167. }
  2168. @media screen and (max-width: 350px) {
  2169. #information-mobile .information {
  2170. font-size: 0.9rem;
  2171. }
  2172. }
  2173. #information-mobile .information a {
  2174. color: #646464;
  2175. }
  2176. #information-mobile .information #information-01 {
  2177. width: 90vw;
  2178. padding: 30vw 0px !important;
  2179. margin: auto;
  2180. line-height: 8vw;
  2181. padding-right: 0px !important;
  2182. }
  2183. @media screen and (max-width: 350px) {
  2184. #information-mobile .information #information-01 {
  2185. padding-left: 1vw;
  2186. padding-top: 0.8vw;
  2187. }
  2188. }
  2189. #information-mobile #mobile-form #form-card {
  2190. width: 90vw;
  2191. margin: 0 auto;
  2192. }
  2193. #information-mobile #mobile-form #form-card .contact-form2 #name,
  2194. #information-mobile #mobile-form #form-card .contact-form2 #company {
  2195. width: 49.5%;
  2196. padding: 10px 15px;
  2197. font-size: 16px;
  2198. border-radius: 3px;
  2199. margin: 10px 0px;
  2200. border: 1px solid rgba(0, 0, 0, 0.3);
  2201. }
  2202. @media screen and (max-width: 1024px) {
  2203. #information-mobile #mobile-form #form-card .contact-form2 #name,
  2204. #information-mobile #mobile-form #form-card .contact-form2 #company {
  2205. width: 100%;
  2206. }
  2207. }
  2208. #information-mobile #mobile-form #form-card .contact-form2 #phone,
  2209. #information-mobile #mobile-form #form-card .contact-form2 #email,
  2210. #information-mobile #mobile-form #form-card .contact-form2 #pay,
  2211. #information-mobile #mobile-form #form-card .contact-form2 #message,
  2212. #information-mobile #mobile-form #form-card .contact-form2 #message1,
  2213. #information-mobile #mobile-form #form-card .contact-form2 #profession,
  2214. #information-mobile #mobile-form #form-card .contact-form2 #line {
  2215. width: 100%;
  2216. padding: 10px 15px;
  2217. font-size: 16px;
  2218. border-radius: 3px;
  2219. margin: 10px 0px;
  2220. border: 1px solid rgba(0, 0, 0, 0.3);
  2221. }
  2222. #information-mobile #mobile-form #form-card .contact-form2 #profession {
  2223. height: 50px;
  2224. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  2225. background-size: 10px 10px;
  2226. background-color: #fff;
  2227. -webkit-appearance: none;
  2228. -moz-appearance: none;
  2229. appearance: none;
  2230. }
  2231. #information-mobile #mobile-form #form-card .contact-form2 .btn {
  2232. margin-top: 3vw;
  2233. width: 55vw;
  2234. border-radius: 30px;
  2235. padding: 10px;
  2236. background: #fff;
  2237. color: #a9d0c5;
  2238. font-family: "Noto Sans TC", sans-serif;
  2239. font-weight: 900;
  2240. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2241. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  2242. border: 3px solid #a9d0c5;
  2243. font-size: 1.2rem;
  2244. letter-spacing: 1px;
  2245. -webkit-transition: 0.3s;
  2246. transition: 0.3s;
  2247. }
  2248. #information-mobile #mobile-form #form-card .contact-form2 .btn:hover {
  2249. background: #a9d0c5;
  2250. color: #fff;
  2251. }
  2252. #information-mobile #map {
  2253. border: 1px solid rgba(0, 0, 0, 0.3);
  2254. border-radius: 10px;
  2255. width: 90vw !important;
  2256. margin: 10vw auto;
  2257. }
  2258. #information-mobile #map #googlemap {
  2259. padding: 2vw !important;
  2260. width: 85vw;
  2261. }
  2262. #footer {
  2263. background: #b0d4ca;
  2264. text-align: center;
  2265. }
  2266. #footer p {
  2267. padding: 15px;
  2268. color: #fff;
  2269. }
  2270. #menu-box {
  2271. top: 15vw;
  2272. height: 25vh;
  2273. width: 100vw;
  2274. position: fixed;
  2275. z-index: 5;
  2276. overflow: hidden;
  2277. display: none;
  2278. }
  2279. @media screen and (min-width: 1025px) {
  2280. #menu-box {
  2281. display: none;
  2282. }
  2283. }
  2284. @media screen and (max-width: 767px) {
  2285. #menu-box {
  2286. height: 47vh;
  2287. }
  2288. }
  2289. @media screen and (max-width: 350px) {
  2290. #menu-box {
  2291. height: 55vh;
  2292. }
  2293. }
  2294. #menu-box hr {
  2295. display: inline-block;
  2296. margin: 0px auto !important;
  2297. width: 55vw;
  2298. background: #fff;
  2299. opacity: 1 !important;
  2300. }
  2301. #menu-box #menu-box2 {
  2302. width: 100vw;
  2303. height: 25vh;
  2304. background-color: #a9d0c5;
  2305. opacity: 0.95;
  2306. z-index: 7;
  2307. text-align: center;
  2308. }
  2309. @media screen and (max-width: 767px) {
  2310. #menu-box #menu-box2 {
  2311. height: 45vh;
  2312. }
  2313. }
  2314. @media screen and (max-width: 350px) {
  2315. #menu-box #menu-box2 {
  2316. height: 55vh;
  2317. }
  2318. }
  2319. #menu-box #menu-box2 #menu-link {
  2320. display: -ms-grid;
  2321. display: grid;
  2322. -ms-grid-columns: (1fr)[4];
  2323. grid-template-columns: repeat(4, 1fr);
  2324. width: 60vw;
  2325. margin: 0 auto;
  2326. }
  2327. #menu-box #menu-box2 .menu-logo {
  2328. opacity: 1;
  2329. }
  2330. #menu-box #menu-box2 .menu-logo img {
  2331. width: 7vw;
  2332. }
  2333. #menu-box #menu-box2 a {
  2334. display: inline-block;
  2335. text-decoration: none;
  2336. color: #fff;
  2337. font-size: 16px;
  2338. margin-top: 20px;
  2339. font-weight: 900;
  2340. }
  2341. @media screen and (max-width: 767px) {
  2342. #menu-box #menu-box2 a {
  2343. margin-top: 4vw;
  2344. }
  2345. }
  2346. #menu-box #menu-box2 .menu-text {
  2347. width: 100vw;
  2348. text-align: center;
  2349. margin-bottom: 10px;
  2350. }
  2351. @media screen and (max-width: 767px) {
  2352. #menu-box #menu-box2 .menu-text {
  2353. margin-bottom: 5px !important;
  2354. }
  2355. }
  2356. .container {
  2357. padding: 0 !important;
  2358. margin: 0 !important;
  2359. text-align: center;
  2360. }
  2361. .container #countdown {
  2362. position: relative;
  2363. width: 80vw;
  2364. }
  2365. @media screen and (max-width: 1024px) {
  2366. .container #countdown {
  2367. width: 100vw;
  2368. text-align: left;
  2369. }
  2370. }
  2371. @media screen and (max-width: 767px) {
  2372. .container #countdown {
  2373. width: 90vw;
  2374. margin: 0 auto;
  2375. }
  2376. }
  2377. @media screen and (max-width: 400px) {
  2378. .container #countdown {
  2379. width: 90vw;
  2380. margin: 0 auto;
  2381. width: 100vw;
  2382. }
  2383. }
  2384. .container li {
  2385. display: inline-block;
  2386. font-size: 1.5em;
  2387. list-style-type: none;
  2388. padding: 1em;
  2389. text-transform: uppercase;
  2390. }
  2391. @media screen and (max-width: 1024px) {
  2392. .container li {
  2393. font-size: 16px;
  2394. text-align: center;
  2395. }
  2396. }
  2397. @media screen and (max-width: 400px) {
  2398. .container li {
  2399. font-size: 12px;
  2400. }
  2401. }
  2402. .container li span {
  2403. display: block;
  2404. font-size: 4.5rem;
  2405. }
  2406. li {
  2407. display: inline-block;
  2408. list-style-type: none;
  2409. text-transform: uppercase;
  2410. padding-left: 0 !important;
  2411. position: relative;
  2412. padding: 1em;
  2413. font-size: 1.5em;
  2414. }
  2415. li #days,
  2416. li #hours,
  2417. li #minutes,
  2418. li #seconds {
  2419. font-size: 6rem;
  2420. font-family: "Roboto", sans-serif !important;
  2421. font-weight: 900;
  2422. color: #fff;
  2423. text-shadow: 0.5px 0.5px 13px rgba(0, 0, 0, 0.15);
  2424. border-right: 2px solid #fff;
  2425. padding: 0 40px;
  2426. }
  2427. @media screen and (max-width: 1024px) {
  2428. li #days,
  2429. li #hours,
  2430. li #minutes,
  2431. li #seconds {
  2432. font-size: 3rem;
  2433. padding: 0 25px;
  2434. }
  2435. }
  2436. @media screen and (max-width: 767px) {
  2437. li #days,
  2438. li #hours,
  2439. li #minutes,
  2440. li #seconds {
  2441. font-size: 2rem;
  2442. padding: 0 5vw 0 1vw;
  2443. }
  2444. }
  2445. @media screen and (max-width: 400px) {
  2446. li #days,
  2447. li #hours,
  2448. li #minutes,
  2449. li #seconds {
  2450. padding: 0 3vw 0 3vw;
  2451. font-size: 1.7rem;
  2452. }
  2453. }
  2454. @media all and (max-width: 768px) {
  2455. h1 {
  2456. font-size: 1.5rem;
  2457. }
  2458. li {
  2459. font-size: 1.125rem;
  2460. padding: .75rem;
  2461. }
  2462. li span {
  2463. font-size: 3.375rem;
  2464. }
  2465. }
  2466. /*# sourceMappingURL=style.css.map */