style.css 74 KB

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