style.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@600;700;900&display=swap");
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. -webkit-box-sizing: border-box;
  7. box-sizing: border-box;
  8. }
  9. @font-face {
  10. font-family: 綜藝體繁;
  11. src: url(./wt040-綜藝體繁.ttf);
  12. font-weight: 900;
  13. font-display: swap;
  14. }
  15. body .secn-title {
  16. font-family: 'Noto Serif TC', serif;
  17. text-align: left;
  18. color: #292421;
  19. font-size: 30px;
  20. font-weight: 700;
  21. padding: 5px 10px;
  22. margin-bottom: 0px;
  23. }
  24. @media screen and (max-width: 767px) {
  25. body .secn-title {
  26. font-weight: 900;
  27. font-size: 32px;
  28. }
  29. }
  30. body .line {
  31. width: 8vw;
  32. height: 3px;
  33. color: #9400d3;
  34. margin-left: 12px;
  35. opacity: 1 !important;
  36. margin-top: 10px;
  37. }
  38. @media screen and (max-width: 767px) {
  39. body .line {
  40. width: 30vw;
  41. }
  42. }
  43. .container-fluid {
  44. width: 80vw;
  45. margin: 0 auto;
  46. }
  47. @media screen and (max-width: 767px) {
  48. .container-fluid {
  49. width: 100vw;
  50. }
  51. }
  52. #Navigation {
  53. width: 100vw;
  54. position: fixed;
  55. z-index: 20;
  56. background: rgba(41, 36, 33, 0.9);
  57. color: #fff;
  58. }
  59. #Navigation #logo {
  60. padding-top: 2.5vw;
  61. padding-left: 2vw;
  62. }
  63. @media screen and (max-width: 767px) {
  64. #Navigation #logo {
  65. padding: 15px;
  66. }
  67. }
  68. #Navigation #logo img {
  69. width: 180px;
  70. }
  71. @media screen and (max-width: 767px) {
  72. #Navigation #logo img {
  73. width: 140px;
  74. }
  75. }
  76. #Navigation #link {
  77. padding: 4vw 1vw 2vw 1vw;
  78. }
  79. @media screen and (max-width: 767px) {
  80. #Navigation #link {
  81. display: none;
  82. }
  83. }
  84. #Navigation #link a {
  85. text-decoration: none;
  86. color: #fff;
  87. letter-spacing: 1px;
  88. font-size: 0.9rem;
  89. font-weight: 600;
  90. cursor: pointer;
  91. padding: 15px;
  92. position: relative;
  93. }
  94. #Navigation #link a :hover {
  95. opacity: 0.8;
  96. }
  97. #Navigation #link a:after {
  98. content: "";
  99. display: block;
  100. width: 80%;
  101. height: 3px;
  102. background-color: #fff;
  103. position: absolute;
  104. left: 12%;
  105. bottom: 0;
  106. -webkit-transition: all 0.3s;
  107. transition: all 0.3s;
  108. opacity: 0;
  109. }
  110. #Navigation #link a:hover:after {
  111. width: 80%;
  112. opacity: 1;
  113. }
  114. @media screen and (max-width: 1024px) {
  115. #Navigation #link a {
  116. padding: 5px;
  117. padding-top: 2vw;
  118. }
  119. }
  120. #Navigation #menu-btn1 {
  121. position: absolute;
  122. right: 2vw;
  123. top: 5vw;
  124. width: 15vw;
  125. z-index: 6;
  126. }
  127. @media screen and (min-width: 1025px) {
  128. #Navigation #menu-btn1 {
  129. display: none;
  130. }
  131. }
  132. @media screen and (min-width: 768px) {
  133. #Navigation #menu-btn1 {
  134. display: none;
  135. }
  136. }
  137. #menu-box {
  138. width: 40vw;
  139. right: 0px;
  140. position: fixed;
  141. top: 0px;
  142. z-index: 20;
  143. overflow: hidden;
  144. display: none;
  145. }
  146. @media screen and (min-width: 1025px) {
  147. #menu-box {
  148. display: none;
  149. }
  150. }
  151. #menu-box hr {
  152. margin: 5px auto !important;
  153. width: 25vw;
  154. background: #fff;
  155. opacity: 1 !important;
  156. }
  157. #menu-box #menu-box2 {
  158. padding-bottom: 5vw;
  159. position: relative;
  160. width: 40vw;
  161. background-color: #292421;
  162. z-index: 7;
  163. text-align: center;
  164. }
  165. #menu-box #menu-box2 .close {
  166. padding: 30px 15px 15px 15px;
  167. }
  168. #menu-box #menu-box2 a {
  169. display: inline-block;
  170. text-decoration: none;
  171. color: #fff;
  172. font-size: 14px;
  173. font-weight: 900;
  174. text-align: center;
  175. padding: 0 !important;
  176. }
  177. .courseadv {
  178. font-weight: 900;
  179. width: 100vw;
  180. padding: 2vw;
  181. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  182. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  183. }
  184. .courseadv img {
  185. cursor: pointer;
  186. }
  187. #banner {
  188. margin-top: 7.5vw;
  189. padding-bottom: 3vw;
  190. width: 100vw;
  191. display: inline-block;
  192. background: #000;
  193. }
  194. @media screen and (max-width: 767px) {
  195. #banner {
  196. margin-top: 70px;
  197. }
  198. }
  199. #banner .form {
  200. padding-top: 5vw;
  201. background: #000;
  202. }
  203. #banner .form h1 {
  204. text-align: center;
  205. font-size: 2.5rem;
  206. color: #fff;
  207. font-weight: 900;
  208. }
  209. @media screen and (max-width: 767px) {
  210. #banner .form h1 {
  211. font-size: 2rem;
  212. }
  213. }
  214. #banner .form h4 {
  215. text-align: center;
  216. margin-top: 2rem;
  217. color: #adadad;
  218. }
  219. #banner .form h2 {
  220. text-align: center;
  221. margin-top: 30px;
  222. color: #fff;
  223. }
  224. #banner .form .email-form {
  225. width: 70%;
  226. }
  227. @media screen and (max-width: 767px) {
  228. #banner .form .email-form {
  229. width: 100%;
  230. }
  231. }
  232. #banner .form .email-form .course-tab {
  233. margin: 15px 0px;
  234. font-family: 微軟正黑體;
  235. font-size: 18px;
  236. display: inline-block;
  237. width: 100%;
  238. color: #fff;
  239. }
  240. #banner .form .email-form #email {
  241. width: 100%;
  242. height: 35px;
  243. margin: 15px 0;
  244. padding: 25px 5px;
  245. background: #1b1c1e;
  246. border: 1px solid rgba(0, 0, 0, 0.3);
  247. border-radius: 5px;
  248. color: #fff;
  249. }
  250. #banner .form .email-form .selector1 {
  251. cursor: pointer;
  252. margin: 0.3rem;
  253. padding: 0.5rem;
  254. border: 1px solid #bebebe;
  255. border-radius: 5px;
  256. width: 8vw;
  257. color: #bebebe;
  258. -webkit-transition: 0.3s;
  259. transition: 0.3s;
  260. }
  261. @media screen and (max-width: 767px) {
  262. #banner .form .email-form .selector1 {
  263. width: 40%;
  264. }
  265. }
  266. #banner .form .email-form .selector1 img {
  267. -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(174deg) brightness(102%) contrast(101%);
  268. filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(174deg) brightness(102%) contrast(101%);
  269. }
  270. #banner .form .email-form .selector1:hover {
  271. color: #fff;
  272. border: 1px solid #fff;
  273. }
  274. #banner .form .email-form .email-subbtn {
  275. margin: 0 auto;
  276. width: 100%;
  277. margin: 30px 0px;
  278. padding: 15px 0;
  279. background-color: #9400d3;
  280. /* 邊框:寬度 樣式 顏色 */
  281. border: 0 solid #000;
  282. color: #fff;
  283. border-radius: 5px;
  284. }
  285. #banner .form .email-form .email-subbtn:hover {
  286. background-color: #57027c;
  287. }
  288. #banner #banner-container {
  289. overflow: hidden;
  290. }
  291. @media screen and (max-width: 767px) {
  292. #banner #banner-container {
  293. width: 100vw;
  294. margin: 0;
  295. padding-bottom: 15vw;
  296. }
  297. }
  298. #banner #banner-container img {
  299. margin-bottom: -50px;
  300. width: 55vw;
  301. height: 30vw;
  302. -o-object-fit: cover;
  303. object-fit: cover;
  304. }
  305. @media screen and (max-width: 767px) {
  306. #banner #banner-container img {
  307. padding-top: 15vw;
  308. width: 100vw;
  309. height: auto;
  310. }
  311. }
  312. #sec01 {
  313. padding-top: 5vw;
  314. padding-bottom: 10vw;
  315. background: #fff;
  316. }
  317. #sec01 #sec01-title {
  318. margin-bottom: 50px;
  319. }
  320. #sec01 .learn-more {
  321. width: 45%;
  322. }
  323. #sec01 #sec01-container .sec01-1 .card {
  324. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  325. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  326. border-radius: 10px;
  327. }
  328. #sec01 #sec01-container .sec01-1 .card img {
  329. padding: 5px;
  330. -o-object-fit: cover;
  331. object-fit: cover;
  332. }
  333. #sec01 #sec01-container .sec01-1 .card a {
  334. color: #000;
  335. text-decoration: none;
  336. -webkit-transition: 0.3s;
  337. transition: 0.3s;
  338. cursor: pointer;
  339. }
  340. #sec01 #sec01-container .sec01-1 .card a:hover {
  341. color: #9400d3;
  342. }
  343. #sec01 #sec01-container .sec01-1 .card .card-title1 {
  344. height: 100px;
  345. }
  346. #sec01 #sec01-container .sec01-1 .card .card-content1 {
  347. height: 100px;
  348. }
  349. #sec01-moblie {
  350. padding-top: 5vw;
  351. padding-bottom: 5vw;
  352. background: #fff;
  353. position: relative;
  354. overflow: hidden;
  355. }
  356. #sec01-moblie .arrow-table {
  357. position: fixed;
  358. width: 25px;
  359. right: 15px;
  360. bottom: 240px;
  361. z-index: 6;
  362. }
  363. @media screen and (max-width: 350px) {
  364. #sec01-moblie .arrow-table {
  365. right: 10px;
  366. }
  367. }
  368. @media screen and (min-width: 1025px) {
  369. #sec01-moblie {
  370. display: none;
  371. }
  372. }
  373. #sec01-moblie #sec01-moblie-header h1 {
  374. text-align: center;
  375. color: #e02d4b;
  376. font-size: 45px;
  377. font-weight: 900;
  378. padding: 5px 10px;
  379. }
  380. @media screen and (max-width: 767px) {
  381. #sec01-moblie #sec01-moblie-header h1 {
  382. font-weight: 900;
  383. font-size: 32px;
  384. }
  385. }
  386. #sec01-moblie #sec01-moblie-header hr {
  387. margin: 10px auto !important;
  388. width: 25vw;
  389. height: 5px;
  390. color: #e02d4b;
  391. margin: 10px;
  392. opacity: 1 !important;
  393. }
  394. #sec01-moblie #sec01-moblie-container {
  395. padding-top: 10vw;
  396. }
  397. #sec01-moblie #sec01-moblie-container .col {
  398. margin: 10px;
  399. }
  400. #sec01-moblie #sec01-moblie-container .col .card {
  401. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  402. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  403. border-radius: 10px;
  404. }
  405. #sec01-moblie #sec01-moblie-container .col .card img {
  406. height: 150px;
  407. -o-object-fit: cover;
  408. object-fit: cover;
  409. }
  410. #sec01-moblie #sec01-moblie-container .col .card .card-title {
  411. font-weight: 900;
  412. }
  413. #sec01-moblie #sec01-moblie-container .col .card .learn-more {
  414. width: 120px;
  415. }
  416. #sec02 {
  417. background: #292421;
  418. padding: 5vw 0px;
  419. padding-bottom: 8vw;
  420. }
  421. @media screen and (max-width: 767px) {
  422. #sec02 {
  423. display: none;
  424. }
  425. }
  426. #sec02 #sec02-container {
  427. width: 90vw;
  428. padding: 15px;
  429. font-weight: 900;
  430. color: #fff;
  431. position: relative;
  432. }
  433. #sec02 #sec02-container #sec02-top-box {
  434. position: relative;
  435. }
  436. #sec02 #sec02-container #sec02-top-box #sec02-top-title {
  437. text-align: center;
  438. }
  439. #sec02 #sec02-container #sec02-top-box #sec02-top-title h1 {
  440. font-family: 'Noto Serif TC', serif;
  441. }
  442. #sec02 #sec02-container #sec02-top-box #sec02-top-title hr {
  443. width: 5vw;
  444. height: 5px;
  445. color: #9400d3;
  446. margin: 10px auto;
  447. opacity: 1 !important;
  448. }
  449. @media screen and (max-width: 767px) {
  450. #sec02 #sec02-container #sec02-top-box #sec02-top-title hr {
  451. width: 30vw;
  452. }
  453. }
  454. #sec02 #sec02-container #sec02-top-box #sec02-content {
  455. position: absolute;
  456. top: -180px;
  457. left: 300px;
  458. }
  459. #sec02 #sec02-container #sec02-top-box .sec02-box1 {
  460. color: #fff;
  461. }
  462. #sec02 #sec02-container #sec02-top-box .sec02-box1 img {
  463. display: inline;
  464. width: 200px;
  465. height: 200px;
  466. -o-object-fit: cover;
  467. object-fit: cover;
  468. }
  469. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  470. font-size: 20px;
  471. }
  472. #sec02 #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  473. font-size: 30px;
  474. }
  475. #sec02-moblie {
  476. padding-top: 3vw;
  477. }
  478. @media screen and (min-width: 1025px) {
  479. #sec02-moblie {
  480. display: none;
  481. }
  482. }
  483. #sec02-moblie #sec02-moblie-header h1 {
  484. text-align: center;
  485. color: #292421;
  486. font-size: 45px;
  487. font-weight: 900;
  488. padding: 5px 10px;
  489. }
  490. @media screen and (max-width: 767px) {
  491. #sec02-moblie #sec02-moblie-header h1 {
  492. font-weight: 900;
  493. font-size: 32px;
  494. }
  495. }
  496. #sec02-moblie #sec02-moblie-header hr {
  497. margin: 10px auto !important;
  498. width: 25vw;
  499. height: 5px;
  500. color: #292421;
  501. margin: 10px;
  502. opacity: 1 !important;
  503. }
  504. #sec02-moblie #sec02-container {
  505. background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(35%, transparent), color-stop(20%, #292421));
  506. background: linear-gradient(180deg, #fff 20%, transparent 35%, #292421 20%);
  507. font-weight: 900;
  508. color: #fff;
  509. text-align: right;
  510. padding: 20vw 0;
  511. }
  512. #sec02-moblie #sec02-container #sec02-content {
  513. position: relative;
  514. padding: 5px;
  515. }
  516. @media screen and (max-width: 350px) {
  517. #sec02-moblie #sec02-container #sec02-top-box {
  518. left: 10px;
  519. }
  520. }
  521. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 {
  522. color: #fff;
  523. }
  524. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  525. width: 120px;
  526. }
  527. @media screen and (max-width: 350px) {
  528. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 #top1 {
  529. width: 100px;
  530. height: auto;
  531. }
  532. }
  533. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  534. -o-object-fit: cover;
  535. object-fit: cover;
  536. }
  537. @media screen and (max-width: 350px) {
  538. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 img {
  539. width: 70px;
  540. height: auto;
  541. }
  542. }
  543. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  544. font-size: 12px;
  545. text-align: left;
  546. }
  547. @media screen and (max-width: 350px) {
  548. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text {
  549. text-align: left;
  550. }
  551. }
  552. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  553. font-size: 30px;
  554. }
  555. @media screen and (max-width: 350px) {
  556. #sec02-moblie #sec02-container #sec02-top-box .sec02-box1 .sec02-top-text span {
  557. font-size: 25px;
  558. }
  559. }
  560. #sec03 {
  561. padding-bottom: 5vw;
  562. }
  563. @media screen and (max-width: 767px) {
  564. #sec03 {
  565. display: none;
  566. }
  567. }
  568. #sec03 #sec03-table .sec03-table-title {
  569. font-family: 微軟正黑體;
  570. font-weight: 900;
  571. padding: 15px;
  572. font-size: 35px;
  573. }
  574. #sec03 #sec03-table .table th {
  575. font-size: 40px;
  576. display: table-cell;
  577. vertical-align: middle;
  578. color: #292421;
  579. }
  580. #sec03 #sec03-table .table td {
  581. padding: 15px;
  582. }
  583. #sec03 #sec03-table .table td a {
  584. text-decoration: none;
  585. color: #000;
  586. -webkit-transition: 0.3s;
  587. transition: 0.3s;
  588. cursor: pointer;
  589. }
  590. #sec03 #sec03-table .table td a:hover {
  591. color: #9400d3;
  592. }
  593. #sec03 #sec03-table .table img {
  594. width: 80px;
  595. border-radius: 5px;
  596. }
  597. #sec03 #sec03-table .table .sec03-table-text {
  598. padding: 10px;
  599. display: table-cell;
  600. vertical-align: middle;
  601. }
  602. #sec03 #sec03-table .table .sec03-table-text h1 {
  603. font-size: 20px;
  604. margin: 0;
  605. }
  606. #sec03 #sec03-table .table .sec03-table-text p {
  607. margin: 0;
  608. }
  609. #sec03-moblie {
  610. position: relative;
  611. }
  612. #sec03-moblie .arrow-table {
  613. position: fixed;
  614. width: 25px;
  615. right: 15px;
  616. bottom: 250px;
  617. z-index: 6;
  618. }
  619. @media screen and (max-width: 350px) {
  620. #sec03-moblie .arrow-table {
  621. right: 10px;
  622. bottom: 200px;
  623. }
  624. }
  625. #sec03-moblie .sec03-table-title,
  626. #sec03-moblie .sec03-table-title2 {
  627. font-family: 微軟正黑體;
  628. font-weight: 900;
  629. font-size: 14px;
  630. display: inline-block;
  631. color: #9b9b9b;
  632. }
  633. #sec03-moblie .contant-toggle {
  634. display: inline-block;
  635. color: #000;
  636. padding-bottom: 10px;
  637. border-bottom: 2px solid #000;
  638. }
  639. #sec03-moblie #sec03-slider {
  640. padding-top: 5vw;
  641. }
  642. #sec03-moblie #sec03-slider .slick-slide img {
  643. display: inline;
  644. }
  645. #sec03-moblie #sec03-slider #sec03-slider1,
  646. #sec03-moblie #sec03-slider #sec03-slider2 {
  647. margin: 0 5px;
  648. }
  649. @media screen and (max-width: 350px) {
  650. #sec03-moblie #sec03-slider #sec03-slider1,
  651. #sec03-moblie #sec03-slider #sec03-slider2 {
  652. margin: 0 5px;
  653. }
  654. }
  655. #sec03-moblie #sec03-slider .table th {
  656. font-size: 40px;
  657. display: table-cell;
  658. vertical-align: middle;
  659. padding: 15px;
  660. }
  661. @media screen and (max-width: 350px) {
  662. #sec03-moblie #sec03-slider .table th {
  663. font-size: 30px;
  664. }
  665. }
  666. #sec03-moblie #sec03-slider .table td {
  667. display: table-cell;
  668. vertical-align: middle;
  669. padding: 15px;
  670. padding: 10px;
  671. }
  672. @media screen and (max-width: 350px) {
  673. #sec03-moblie #sec03-slider .table td {
  674. padding: 0px;
  675. }
  676. }
  677. #sec03-moblie #sec03-slider .table td a {
  678. text-decoration: none;
  679. color: #000;
  680. -webkit-transition: 0.3s;
  681. transition: 0.3s;
  682. cursor: pointer;
  683. }
  684. #sec03-moblie #sec03-slider .table td a:hover {
  685. color: #2828ff;
  686. }
  687. #sec03-moblie #sec03-slider .table img {
  688. width: 70px;
  689. }
  690. #sec03-moblie #sec03-slider .table .sec03-table-text {
  691. padding: 0px 0px 0px 3px;
  692. display: table-cell;
  693. vertical-align: middle;
  694. }
  695. @media screen and (max-width: 350px) {
  696. #sec03-moblie #sec03-slider .table .sec03-table-text {
  697. padding: 0px;
  698. }
  699. }
  700. #sec03-moblie #sec03-slider .table .sec03-table-text h1 {
  701. font-size: 14px;
  702. margin: 0;
  703. }
  704. #sec03-moblie #sec03-slider .table .sec03-table-text p {
  705. margin: 0;
  706. font-size: 12px;
  707. }
  708. @media screen and (min-width: 1025px) {
  709. #sec03-moblie {
  710. display: none;
  711. }
  712. }
  713. #sec04 {
  714. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), color-stop(50%, #ededf9));
  715. background: linear-gradient(180deg, #fff 50%, #ededf9 50%);
  716. padding-bottom: 10vw;
  717. }
  718. @media screen and (max-width: 767px) {
  719. #sec04 {
  720. display: none;
  721. }
  722. }
  723. #sec04 #sec04-title {
  724. margin-bottom: 50px;
  725. }
  726. #sec04 .learn-more {
  727. width: 45%;
  728. }
  729. #sec04 #sec04-container a {
  730. text-decoration: none;
  731. color: #000;
  732. -webkit-transition: 0.3s;
  733. transition: 0.3s;
  734. cursor: pointer;
  735. }
  736. #sec04 #sec04-container a:hover {
  737. color: #9400d3;
  738. }
  739. #sec04 #sec04-container .card {
  740. -webkit-box-shadow: 0 10px 1px #9400d3;
  741. box-shadow: 0 10px 1px #9400d3;
  742. border-radius: 10px;
  743. }
  744. #sec04 #sec04-container .card img {
  745. padding: 5px;
  746. height: 150px;
  747. -o-object-fit: cover;
  748. object-fit: cover;
  749. }
  750. #sec04 #sec04-container .card .card-title {
  751. font-weight: 900;
  752. }
  753. #sec04-moblie {
  754. padding-top: 5vw;
  755. padding-bottom: 5vw;
  756. background: #fff;
  757. position: relative;
  758. overflow: hidden;
  759. }
  760. #sec04-moblie .arrow-table {
  761. position: fixed;
  762. width: 25px;
  763. right: 15px;
  764. bottom: 240px;
  765. z-index: 6;
  766. }
  767. @media screen and (max-width: 350px) {
  768. #sec04-moblie .arrow-table {
  769. right: 10px;
  770. }
  771. }
  772. @media screen and (min-width: 1025px) {
  773. #sec04-moblie {
  774. display: none;
  775. }
  776. }
  777. #sec04-moblie #sec04-moblie-container {
  778. padding-top: 10vw;
  779. }
  780. #sec04-moblie #sec04-moblie-container .col {
  781. margin: 10px;
  782. }
  783. #sec04-moblie #sec04-moblie-container .col a {
  784. text-decoration: none;
  785. color: #000;
  786. -webkit-transition: 0.3s;
  787. transition: 0.3s;
  788. cursor: pointer;
  789. }
  790. #sec04-moblie #sec04-moblie-container .col a:hover {
  791. color: #292421;
  792. }
  793. #sec04-moblie #sec04-moblie-container .col .card {
  794. -webkit-box-shadow: 0 10px 1px #9400d3;
  795. box-shadow: 0 10px 1px #9400d3;
  796. border-radius: 10px;
  797. }
  798. #sec04-moblie #sec04-moblie-container .col .card img {
  799. height: 150px;
  800. -o-object-fit: cover;
  801. object-fit: cover;
  802. }
  803. #sec04-moblie #sec04-moblie-container .col .card .card-body {
  804. height: 260px;
  805. }
  806. @media screen and (max-width: 350px) {
  807. #sec04-moblie #sec04-moblie-container .col .card .card-body {
  808. padding: 0.5rem 0.5rem;
  809. }
  810. }
  811. #sec04-moblie #sec04-moblie-container .col .card .card-title {
  812. font-weight: 900;
  813. }
  814. @media screen and (max-width: 350px) {
  815. #sec04-moblie #sec04-moblie-container .col .card .card-text {
  816. font-size: 14px;
  817. }
  818. }
  819. #sec05 {
  820. padding-top: 5vw;
  821. padding-bottom: 5vw;
  822. }
  823. @media screen and (max-width: 767px) {
  824. #sec05 {
  825. padding: 0;
  826. margin: 0;
  827. }
  828. }
  829. #sec05 #sec05-title {
  830. margin-bottom: 50px;
  831. }
  832. #sec05 #tag-group .tag button {
  833. padding-left: 10px;
  834. padding-right: 10px;
  835. margin-right: 30px;
  836. color: #292421;
  837. background: none;
  838. font-size: 24px;
  839. }
  840. @media screen and (max-width: 767px) {
  841. #sec05 #tag-group .tag button {
  842. font-size: 18px;
  843. padding-left: 5px;
  844. padding-right: 5px;
  845. margin-right: 5px;
  846. color: #292421;
  847. }
  848. }
  849. @media screen and (max-width: 350px) {
  850. #sec05 #tag-group .tag button {
  851. font-size: 16px;
  852. }
  853. }
  854. #sec05 #tag-group .tag button:hover, #sec05 #tag-group .tag button:focus {
  855. color: #fff;
  856. background: #292421;
  857. }
  858. @media screen and (max-width: 767px) {
  859. #sec05 #sec05-container {
  860. padding: 5px;
  861. margin: 0;
  862. }
  863. }
  864. #sec05 #sec05-container .course-content {
  865. -webkit-animation-name: Cardload;
  866. animation-name: Cardload;
  867. -webkit-animation-duration: 1.5s;
  868. animation-duration: 1.5s;
  869. }
  870. #sec05 #sec05-container #sec05-course a {
  871. text-decoration: none;
  872. color: #000;
  873. -webkit-transition: 0.3s;
  874. transition: 0.3s;
  875. cursor: pointer;
  876. }
  877. #sec05 #sec05-container #sec05-course a:hover {
  878. color: #9400d3;
  879. }
  880. #sec05 #sec05-container #sec05-course img {
  881. -o-object-fit: cover;
  882. object-fit: cover;
  883. }
  884. #sec05 #sec05-container #sec05-course .card-title {
  885. font-weight: 900;
  886. height: 55px;
  887. }
  888. #sec05 #sec05-container #sec05-course .banner img {
  889. height: 22vw;
  890. }
  891. @media screen and (max-width: 767px) {
  892. #sec05 #sec05-container #sec05-course .banner img {
  893. height: auto;
  894. }
  895. }
  896. #sec05 #sec05-container #sec05-course .card-content {
  897. height: 100px;
  898. }
  899. @media screen and (max-width: 767px) {
  900. #sec05 #sec05-container #sec05-course .card-content {
  901. height: auto;
  902. }
  903. }
  904. #sec05 #sec05-container #sec05-course .price {
  905. font-size: 20px;
  906. }
  907. @media screen and (max-width: 350px) {
  908. #sec05 #sec05-container #sec05-course .price {
  909. font-size: 16px;
  910. }
  911. }
  912. #sec06 {
  913. padding-top: 5vw;
  914. padding-bottom: 5vw;
  915. }
  916. #sec06 #sec06-container-box {
  917. padding-top: 8vw;
  918. background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #292421), color-stop(50%, transparent), color-stop(50%, #fff));
  919. background: linear-gradient(180deg, #292421 50%, transparent 50%, #fff 50%);
  920. background-size: contain;
  921. background-repeat: no-repeat;
  922. background-blend-mode: overlay;
  923. }
  924. #sec06 #sec06-title {
  925. width: 80vw;
  926. margin: 0 auto;
  927. text-align: right !important;
  928. }
  929. @media screen and (max-width: 767px) {
  930. #sec06 #sec06-title {
  931. width: 100vw;
  932. }
  933. }
  934. #sec06 #sec06-container {
  935. text-align: center;
  936. }
  937. #sec06 #sec06-container .card {
  938. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  939. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  940. background: #fff;
  941. padding-top: 5vw;
  942. padding-bottom: 5vw;
  943. border: none;
  944. }
  945. @media screen and (max-width: 767px) {
  946. #sec06 #sec06-container .card {
  947. padding: 5px;
  948. }
  949. }
  950. #sec06 #sec06-container .card .sec09-7 {
  951. width: 200px;
  952. }
  953. #sec06 #sec06-container .card .adv4 {
  954. display: -webkit-box;
  955. display: -ms-flexbox;
  956. display: flex;
  957. -webkit-box-align: center;
  958. -ms-flex-align: center;
  959. align-items: center;
  960. }
  961. #sec06 #sec06-container .card .adv4 img {
  962. -webkit-box-align: center;
  963. -ms-flex-align: center;
  964. align-items: center;
  965. }
  966. #sec06 #sec06-container .col-3 {
  967. margin: 10px 0;
  968. }
  969. @media screen and (max-width: 1025px) {
  970. #sec06 #sec06-container .col-3 {
  971. padding: 15px;
  972. }
  973. }
  974. @media screen and (max-width: 767px) {
  975. #sec06 #sec06-container .col-3 {
  976. padding: 5px;
  977. }
  978. }
  979. #sec06 #sec06-container .col-3 img {
  980. -o-object-fit: cover;
  981. object-fit: cover;
  982. }
  983. @media screen and (max-width: 767px) {
  984. #sec06 #sec06-container .col-3 img {
  985. padding: 5px;
  986. }
  987. }
  988. #sec06 #sec06-container .sec09-1 {
  989. padding: 50px;
  990. }
  991. @media screen and (max-width: 767px) {
  992. #sec06 #sec06-container .sec09-1 {
  993. padding: 0;
  994. }
  995. }
  996. #footer {
  997. width: 100vw;
  998. text-align: center;
  999. line-height: 2;
  1000. background: #292421;
  1001. color: #fff;
  1002. }
  1003. #footer .footer-link {
  1004. padding-top: 3vw;
  1005. }
  1006. #footer .footer-link a {
  1007. text-decoration: none;
  1008. font-size: 20px;
  1009. padding: 10px;
  1010. color: #fff;
  1011. }
  1012. @media screen and (max-width: 767px) {
  1013. #footer .footer-link a {
  1014. font-size: 14px;
  1015. padding: 0 !important;
  1016. }
  1017. }
  1018. @media screen and (max-width: 400px) {
  1019. #footer .footer-link a {
  1020. font-size: 12px;
  1021. }
  1022. }
  1023. #footer .footer-link a span {
  1024. font-size: 28px;
  1025. }
  1026. @media screen and (max-width: 767px) {
  1027. #footer .footer-link a span {
  1028. font-size: 16px;
  1029. }
  1030. }
  1031. @media screen and (max-width: 350px) {
  1032. #footer .footer-link a span {
  1033. font-size: 14px;
  1034. }
  1035. }
  1036. #footer .text {
  1037. padding-top: 3vw;
  1038. }
  1039. #footer .text a {
  1040. text-decoration: none;
  1041. color: #fff;
  1042. }
  1043. #footer .text h2 {
  1044. font-size: 20px;
  1045. margin: 10px;
  1046. letter-spacing: 1px;
  1047. }
  1048. @media screen and (max-width: 767px) {
  1049. #footer .text h2 {
  1050. display: block;
  1051. font-size: 16px;
  1052. margin: 8px;
  1053. }
  1054. }
  1055. #footer .text p {
  1056. margin: 0 !important;
  1057. }
  1058. #footer .text img {
  1059. width: 30px;
  1060. margin: 10px;
  1061. -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  1062. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  1063. -webkit-transition: 0.3s;
  1064. transition: 0.3s;
  1065. }
  1066. #footer .text img:hover {
  1067. opacity: 0.6;
  1068. }
  1069. #sec10 {
  1070. width: 90vw;
  1071. margin: 0 auto;
  1072. }
  1073. #sec10 .sec10-title {
  1074. font-size: 43px;
  1075. }
  1076. @media screen and (max-width: 767px) {
  1077. #sec10 .sec10-title {
  1078. width: 95vw;
  1079. font-size: 26px;
  1080. }
  1081. }
  1082. #sec10 hr {
  1083. height: 1px;
  1084. background: #eee;
  1085. opacity: 1;
  1086. }
  1087. #sec10 .content {
  1088. word-wrap: break-word;
  1089. }
  1090. #sec10 .content p {
  1091. line-height: 2;
  1092. font-size: 18px;
  1093. }
  1094. #sec10 .content .video-work #video2 video {
  1095. width: 100%;
  1096. }
  1097. #sec10 .side-bar h1 {
  1098. color: #e02d4b;
  1099. font-size: 36px;
  1100. font-weight: 900;
  1101. }
  1102. #sec10 .side-bar a {
  1103. text-decoration: none;
  1104. color: #000;
  1105. -webkit-transition: 0.3s;
  1106. transition: 0.3s;
  1107. cursor: pointer;
  1108. }
  1109. #sec10 .side-bar a:hover {
  1110. color: #292421;
  1111. }
  1112. #sec10 .side-bar h5 {
  1113. font-size: 20px;
  1114. font-weight: 900;
  1115. }
  1116. #sec10 .side-bar p {
  1117. font-size: 16px;
  1118. }
  1119. #sec11 #sec11-container {
  1120. width: 85vw;
  1121. }
  1122. #sec11 #sec11-container a {
  1123. text-decoration: none;
  1124. color: #000;
  1125. -webkit-transition: 0.3s;
  1126. transition: 0.3s;
  1127. cursor: pointer;
  1128. }
  1129. #sec11 #sec11-container a:hover {
  1130. color: #292421;
  1131. }
  1132. #sec11 #sec11-container h1 {
  1133. color: #e02d4b;
  1134. font-weight: 900;
  1135. font-size: 36px;
  1136. }
  1137. @media screen and (max-width: 767px) {
  1138. #sec11 #sec11-container .sec11-01 {
  1139. display: block;
  1140. }
  1141. }
  1142. #sec11 #sec11-container .col {
  1143. overflow: hidden;
  1144. }
  1145. #sec11 #sec11-container .sec11-img {
  1146. width: 550px;
  1147. height: 350px;
  1148. -o-object-fit: cover;
  1149. object-fit: cover;
  1150. -webkit-transition: 0.3s;
  1151. transition: 0.3s;
  1152. cursor: pointer;
  1153. }
  1154. #sec11 #sec11-container .sec11-img:hover {
  1155. -webkit-transform: scale(1.02);
  1156. transform: scale(1.02);
  1157. }
  1158. @media screen and (max-width: 767px) {
  1159. #sec11 #sec11-container .sec11-img {
  1160. height: 250px;
  1161. }
  1162. }
  1163. #sec11 #sec11-container h2 {
  1164. font-weight: 900;
  1165. font-size: 24px;
  1166. }
  1167. @-webkit-keyframes Cardload {
  1168. 0% {
  1169. opacity: 0;
  1170. }
  1171. 100% {
  1172. opacity: 1;
  1173. }
  1174. }
  1175. @keyframes Cardload {
  1176. 0% {
  1177. opacity: 0;
  1178. }
  1179. 100% {
  1180. opacity: 1;
  1181. }
  1182. }
  1183. /*# sourceMappingURL=style.css.map */