style.css 74 KB

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