style.scss 27 KB

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