style.scss 27 KB

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