style.scss 33 KB

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