style.scss 28 KB

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