style.scss 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  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. width: 100vw;
  19. background: #fff;
  20. .learn-more {
  21. color: #fff;
  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. #socail-link {
  100. padding: 4vw 1vw 2vw 1vw;
  101. @media screen and(max-width:$moblie) {
  102. display: none;
  103. }
  104. img {
  105. width: 30px;
  106. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(103%) contrast(102%);
  107. transition: 0.3s;
  108. &:hover {
  109. filter: invert(14%) sepia(5%) saturate(8%) hue-rotate(320deg) brightness(95%) contrast(84%);
  110. }
  111. }
  112. }
  113. #menu-btn1 {
  114. position: absolute;
  115. right: 2vw;
  116. top: 8vw;
  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. z-index: 20;
  133. overflow: hidden;
  134. display: none;
  135. @media screen and(min-width:$desktop) {
  136. display: none;
  137. }
  138. hr {
  139. margin: 5px auto !important;
  140. width: 25vw;
  141. background: #fff;
  142. opacity: 1 !important;
  143. }
  144. #menu-box2 {
  145. padding-bottom: 5vw;
  146. position: relative;
  147. width: 40vw;
  148. background-color: $navbgcolor;
  149. z-index: 7;
  150. text-align: center;
  151. @media screen and(max-width:$moblie) {
  152. }
  153. @media screen and(max-width:350px) {
  154. }
  155. .close {
  156. padding: 30px 15px 15px 15px;
  157. }
  158. a {
  159. display: inline-block;
  160. text-decoration: none;
  161. color: #fff;
  162. font-size: 14px;
  163. font-weight: 900;
  164. text-align: center;
  165. padding: 0 !important;
  166. }
  167. }
  168. }
  169. // banner
  170. #banner {
  171. width: 100vw;
  172. display: inline-block;
  173. background: url(./img/banner2.jpg), linear-gradient(75deg, rgba(0, 0, 0, 0.52) 35%, transparent 30%);
  174. background-position: center center;
  175. background-size: cover;
  176. background-blend-mode: overlay;
  177. @media screen and(max-width:$moblie) {
  178. background: url(./img/mobile-banner1.jpg);
  179. }
  180. #banner-container {
  181. width: 80vw;
  182. margin: 50px auto;
  183. padding-bottom: 5vw;
  184. @media screen and(max-width:$moblie) {
  185. width: 85vw;
  186. padding-bottom: 10vw;
  187. }
  188. .youtube {
  189. width: 80vw;
  190. padding-top: 10vw;
  191. margin: 0 auto;
  192. color: #fff;
  193. a {
  194. text-decoration: none;
  195. color: #fff;
  196. }
  197. @media screen and(max-width:$moblie) {
  198. padding-top: 10vw;
  199. margin: 0 auto;
  200. }
  201. #youtube-text {
  202. h1 {
  203. font-size: 40px;
  204. text-align: left;
  205. @media screen and(max-width:$moblie) {
  206. font-size: 30px;
  207. margin: 0;
  208. }
  209. }
  210. .youtube-text-title1 {
  211. width: 380px;
  212. @media screen and(max-width:$moblie) {
  213. width: 80vw;
  214. }
  215. }
  216. .youtube-text-title2 {
  217. width: 350px;
  218. @media screen and(max-width:$moblie) {
  219. width: 80vw;
  220. }
  221. }
  222. p {
  223. width: 300px;
  224. @media screen and(max-width:$moblie) {
  225. width: 80vw;
  226. }
  227. }
  228. }
  229. hr {
  230. width: 12vw;
  231. height: 2px;
  232. color: #fff;
  233. margin: 20px 0px;
  234. opacity: 1 !important;
  235. @media screen and(max-width:$moblie) {
  236. width: 80vw;
  237. }
  238. }
  239. .youtube-text-hr {
  240. width: 20vw;
  241. padding: 10px;
  242. @media screen and(max-width:$moblie) {
  243. width: 80vw;
  244. }
  245. }
  246. p {
  247. font-size: 18px;
  248. }
  249. h1 {
  250. font-size: 30px;
  251. @media screen and(max-width:$moblie) {
  252. font-size: 25px;
  253. padding: 15px 0px;
  254. }
  255. }
  256. .learn-more {
  257. @media screen and(max-width:$moblie) {
  258. width: 100%;
  259. margin: 10px 0px;
  260. }
  261. }
  262. }
  263. #youtube2 {
  264. #youtube-text {
  265. h1 {
  266. font-size: 30px;
  267. @media screen and(max-width:$moblie) {
  268. font-size: 23px;
  269. margin: 0;
  270. }
  271. }
  272. .youtube-text-title1 {
  273. width: 450px;
  274. @media screen and(max-width:$moblie) {
  275. width: 80vw;
  276. }
  277. }
  278. .youtube-text-title2 {
  279. width: 450px;
  280. @media screen and(max-width:$moblie) {
  281. width: 80vw;
  282. }
  283. }
  284. }
  285. }
  286. .contact-form-destop {
  287. text-align: center;
  288. @media screen and(max-width:$moblie) {
  289. display: none;
  290. }
  291. h1 {
  292. padding: 5vw 0 1vw 0;
  293. color: #fff;
  294. @media screen and(max-width:$moblie) {
  295. font-size: 20px;
  296. padding: 15px;
  297. }
  298. }
  299. #email {
  300. width: 50%;
  301. font-size: 16px;
  302. margin: 15px 0;
  303. padding: 10px 15px;
  304. border: none;
  305. height: 50px;
  306. border: 1px solid #313131;
  307. @media screen and(max-width:$moblie) {
  308. display: none;
  309. }
  310. }
  311. .btn {
  312. color: #fff;
  313. width: 25%;
  314. height: 50px;
  315. margin: 15px 0px;
  316. font-size: 16px;
  317. border-radius: 0%;
  318. border: none;
  319. font-weight: 900;
  320. background: #93000a;
  321. vertical-align: top;
  322. transition: 0.3s;
  323. @media screen and(max-width:$moblie) {
  324. display: none;
  325. }
  326. &:hover {
  327. font-size: 17px;
  328. }
  329. }
  330. }
  331. .contact-form-mobile {
  332. @media screen and(min-width:$desktop) {
  333. display: none;
  334. }
  335. h1 {
  336. text-align: center;
  337. padding: 10vw 0 1vw 0;
  338. color: #fff;
  339. font-size: 20px;
  340. }
  341. // 手機板訂閱email
  342. #email-moblie {
  343. margin: 10px auto;
  344. width: 75%;
  345. padding: 10px 15px;
  346. border: none;
  347. height: 50px;
  348. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  349. background-size: 20px 15px;
  350. background-color: #fff;
  351. text-align: center;
  352. color: #313131;
  353. font-weight: 900;
  354. @media screen and(min-width:$desktop) {
  355. display: none;
  356. }
  357. }
  358. }
  359. // 手機板按鈕
  360. #email-arrow {
  361. width: 15%;
  362. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  363. background-size: 10px 15px;
  364. background-color: #93000a;
  365. height: 50px;
  366. margin: 10px auto;
  367. font-size: 16px;
  368. border-radius: 0%;
  369. border: none;
  370. font-weight: 900;
  371. vertical-align: top;
  372. @media screen and(min-width:$desktop) {
  373. display: none;
  374. }
  375. }
  376. }
  377. }
  378. // sec01 NEWS
  379. #sec01 {
  380. padding-top: 5vw;
  381. padding-bottom: 5vw;
  382. .NEWS {
  383. width: 80vw;
  384. margin: 0 auto;
  385. margin-top: -130px;
  386. margin-bottom: 100px;
  387. @media screen and(max-width:$moblie) {
  388. margin-top: -70px;
  389. width: 90vw;
  390. }
  391. h1 {
  392. padding: 0;
  393. margin: 0;
  394. font-weight: 900;
  395. color: #fff;
  396. letter-spacing: 3px;
  397. font-size: 60px;
  398. @media screen and(max-width:$moblie) {
  399. font-size: 50px;
  400. }
  401. }
  402. }
  403. #sec01-container {
  404. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  405. margin: 0 auto !important;
  406. @media screen and(max-width:$moblie) {
  407. width: 90vw;
  408. margin: 0 auto;
  409. }
  410. #sec01-container-card {
  411. .card {
  412. padding: 30px;
  413. border: none !important;
  414. @media screen and(max-width:$moblie) {
  415. padding: 15px;
  416. }
  417. h1 {
  418. padding: 15px;
  419. font-size: 40px;
  420. font-weight: 900;
  421. color: #9b9b9b;
  422. }
  423. p {
  424. padding: 5px;
  425. font-size: 18px;
  426. margin-bottom: 0 !important;
  427. @media screen and(max-width:$moblie) {
  428. padding: 0px;
  429. font-size: 16px;
  430. }
  431. }
  432. .sec01-title {
  433. padding: 15px 0px;
  434. font-weight: 900;
  435. font-size: 22px;
  436. @media screen and(max-width:$moblie) {
  437. font-size: 18px;
  438. }
  439. }
  440. a {
  441. text-decoration: none;
  442. color: #000;
  443. transition: 0.3s;
  444. cursor: pointer;
  445. &:hover {
  446. color: #2828ff;
  447. }
  448. }
  449. img {
  450. text-align: center;
  451. width: 35vw;
  452. height: 240px;
  453. object-fit: cover;
  454. @media screen and(max-width:$moblie) {
  455. width: 85vw;
  456. height: 200px;
  457. margin: 0 auto;
  458. }
  459. }
  460. }
  461. }
  462. }
  463. }
  464. // 活動作品集
  465. #sec-works {
  466. .sec-work-container {
  467. width: 85vw;
  468. }
  469. #sec-work-box {
  470. .work-box {
  471. .card {
  472. text-align: center;
  473. transition: 0.3s;
  474. &:hover {
  475. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  476. }
  477. }
  478. }
  479. }
  480. .sec-work-title {
  481. h1 {
  482. font-size: 45px;
  483. font-weight: 900;
  484. padding: 15px;
  485. }
  486. }
  487. }
  488. // sec02 TOP排名 電腦版
  489. #sec02 {
  490. background: #414141;
  491. padding: 3vw;
  492. @media screen and(max-width:$moblie) {
  493. display: none;
  494. }
  495. #sec02-container {
  496. width: 90vw;
  497. padding: 15px;
  498. font-weight: 900;
  499. color: #fff;
  500. position: relative;
  501. // 電腦版top圖片排行
  502. #sec02-top-box {
  503. position: relative;
  504. #sec02-content {
  505. position: absolute;
  506. top: 10px;
  507. left: 300px;
  508. }
  509. .sec02-box1 {
  510. color: #000;
  511. width: 13vw;
  512. img {
  513. display: inline;
  514. width: 150px;
  515. height: 200px;
  516. object-fit: cover;
  517. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  518. }
  519. .sec02-top-text {
  520. h1 {
  521. font-size: 50px;
  522. }
  523. span {
  524. font-size: 30px;
  525. }
  526. }
  527. }
  528. }
  529. }
  530. }
  531. // sec02 top排名手機板
  532. #sec02-moblie {
  533. background: #414141;
  534. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  535. padding-top: 3vw;
  536. padding-bottom: 10vw;
  537. @media screen and(min-width:$desktop) {
  538. display: none;
  539. }
  540. #sec02-container {
  541. padding: 15px;
  542. font-weight: 900;
  543. color: #fff;
  544. width: 100vw;
  545. .sec02-top1-box {
  546. h1 {
  547. font-size: 40px;
  548. padding: 3vw 0;
  549. }
  550. img {
  551. width: 80px;
  552. }
  553. span {
  554. font-size: 30px;
  555. }
  556. .sec02-top-text {
  557. text-align: center;
  558. }
  559. }
  560. #sec02-top-box {
  561. width: 95vw;
  562. margin: 5px;
  563. .sec02-box1 {
  564. color: #000;
  565. #top1 {
  566. width: 100px;
  567. height: 130px;
  568. @media screen and(max-width:350px) {
  569. width: 100px;
  570. height: 130px;
  571. }
  572. }
  573. img {
  574. width: 80px;
  575. height: 120px;
  576. @media screen and(max-width:350px) {
  577. width: 70px;
  578. height: 100px;
  579. }
  580. }
  581. .sec02-top-text {
  582. font-size: 12px;
  583. text-align: left;
  584. @media screen and(max-width:350px) {
  585. }
  586. span {
  587. font-size: 30px;
  588. @media screen and(max-width:350px) {
  589. font-size: 25px;
  590. }
  591. }
  592. }
  593. }
  594. }
  595. }
  596. }
  597. // sec03 排名table-電腦版
  598. #sec03 {
  599. padding-top: 15vw;
  600. padding-bottom: 5vw;
  601. @media screen and(max-width:$moblie) {
  602. display: none;
  603. }
  604. #sec03-table {
  605. .sec03-table-title {
  606. font-family: 微軟正黑體;
  607. font-weight: 900;
  608. padding: 15px;
  609. font-size: 35px;
  610. }
  611. .table {
  612. th {
  613. font-size: 40px;
  614. display: table-cell;
  615. vertical-align: middle;
  616. }
  617. td {
  618. padding: 15px;
  619. a {
  620. text-decoration: none;
  621. color: #000;
  622. }
  623. }
  624. img {
  625. width: 50px;
  626. }
  627. .sec03-table-text {
  628. padding: 10px;
  629. display: table-cell;
  630. vertical-align: middle;
  631. h1 {
  632. font-size: 20px;
  633. margin: 0;
  634. font-weight: 900;
  635. }
  636. p {
  637. margin: 0;
  638. color: #9b9b9b;
  639. }
  640. }
  641. }
  642. }
  643. }
  644. // sec03排名table-手機板
  645. #sec03-moblie {
  646. position: relative;
  647. .arrow-table {
  648. position: fixed;
  649. width: 25px;
  650. right: 15px;
  651. bottom: 250px;
  652. z-index: 6;
  653. @media screen and(max-width:350px) {
  654. right: 10px;
  655. bottom: 200px;
  656. }
  657. }
  658. .sec03-table-title,
  659. .sec03-table-title2 {
  660. font-family: 微軟正黑體;
  661. font-weight: 900;
  662. font-size: 14px;
  663. display: inline-block;
  664. color: #9b9b9b;
  665. @media screen and(max-width:350px) {
  666. font-size: 12px;
  667. }
  668. }
  669. .contant-toggle {
  670. display: inline-block;
  671. color: #000;
  672. padding-bottom: 10px;
  673. border-bottom: 2px solid #000;
  674. }
  675. #sec03-slider {
  676. padding-top: 5vw;
  677. .slick-slide img {
  678. display: inline;
  679. }
  680. #sec03-slider1,
  681. #sec03-slider2 {
  682. margin-left: 10px;
  683. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  684. @media screen and(max-width:350px) {
  685. margin: 0 5px;
  686. }
  687. }
  688. .table {
  689. th {
  690. font-size: 40px;
  691. display: table-cell;
  692. vertical-align: middle;
  693. padding: 15px;
  694. @media screen and(max-width:350px) {
  695. font-size: 25px;
  696. }
  697. }
  698. td {
  699. display: table-cell;
  700. vertical-align: middle;
  701. padding: 15px;
  702. padding: 10px 0;
  703. @media screen and(max-width:350px) {
  704. padding: 0px;
  705. }
  706. a {
  707. text-decoration: none;
  708. color: #000;
  709. }
  710. }
  711. img {
  712. width: 50px;
  713. }
  714. .sec03-table-text {
  715. padding: 0px 0px 0px 3px;
  716. display: table-cell;
  717. vertical-align: middle;
  718. @media screen and(max-width:350px) {
  719. padding: 0px;
  720. }
  721. h1 {
  722. font-size: 14px;
  723. margin: 0;
  724. font-weight: 900;
  725. }
  726. p {
  727. margin: 0;
  728. font-size: 12px;
  729. color: #9b9b9b;
  730. }
  731. }
  732. }
  733. }
  734. @media screen and(min-width:$desktop) {
  735. display: none;
  736. }
  737. }
  738. // sec04 洞察報告 電腦版
  739. #sec04 {
  740. padding-top: 5vw;
  741. padding-bottom: 5vw;
  742. background: #414141;
  743. background-position: center center;
  744. background-size: cover;
  745. @media screen and(max-width:$moblie) {
  746. display: none;
  747. }
  748. .sec04-title {
  749. padding-bottom: 1vw;
  750. h1 {
  751. color: #fff;
  752. font-size: 45px;
  753. font-weight: 900;
  754. padding: 10px 10px;
  755. @media screen and(max-width:$moblie) {
  756. font-weight: 900;
  757. font-size: 32px;
  758. }
  759. }
  760. hr {
  761. width: 12vw;
  762. height: 2px;
  763. color: #fff !important;
  764. margin: 10px;
  765. opacity: 1 !important;
  766. @media screen and(max-width:$moblie) {
  767. width: 30vw;
  768. }
  769. }
  770. }
  771. .learn-more {
  772. width: 120px;
  773. }
  774. #sec04-container {
  775. background: linear-gradient(180deg, #414141 15%, #eee 0%);
  776. // background: rgba(0,0,0,0.72);
  777. padding: 20px;
  778. padding-bottom: 50px;
  779. .card {
  780. border: none;
  781. img {
  782. height: 150px;
  783. object-fit: cover;
  784. }
  785. border-radius: 0%;
  786. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  787. .card-title {
  788. font-weight: 900;
  789. }
  790. }
  791. }
  792. }
  793. // sec04洞察報告 手機板
  794. #sec04-moblie {
  795. padding-top: 5vw;
  796. padding-bottom: 5vw;
  797. background: #414141;
  798. position: relative;
  799. overflow: hidden;
  800. .arrow-table {
  801. position: fixed;
  802. width: 25px;
  803. right: 15px;
  804. bottom: 240px;
  805. z-index: 6;
  806. @media screen and(max-width:350px) {
  807. right: 10px;
  808. }
  809. }
  810. .sec04-button {
  811. text-align: center;
  812. margin-top: -50px;
  813. width: 85vw;
  814. @media screen and(min-width:$desktop) {
  815. display: none;
  816. }
  817. .mouse_scroll {
  818. display: inline-block;
  819. margin: 0 auto;
  820. width: 24px;
  821. transform: rotate(90deg);
  822. }
  823. .testright {
  824. transform: rotate(180deg);
  825. }
  826. .m_scroll_arrows {
  827. display: block;
  828. width: 5px;
  829. height: 5px;
  830. -ms-transform: rotate(45deg); /* IE 9 */
  831. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  832. transform: rotate(45deg);
  833. border-right: 2px solid #fff;
  834. border-bottom: 2px solid #fff;
  835. margin: 0 0 3px 4px;
  836. width: 16px;
  837. height: 16px;
  838. }
  839. .unu {
  840. margin-top: 1px;
  841. }
  842. .unu,
  843. .doi,
  844. .trei {
  845. -webkit-animation: mouse-scroll 1s infinite;
  846. -moz-animation: mouse-scroll 1s infinite;
  847. animation: mouse-scroll 1s infinite;
  848. }
  849. .unu {
  850. -webkit-animation-delay: 0.1s;
  851. -moz-animation-delay: 0.1s;
  852. -webkit-animation-direction: alternate;
  853. animation-direction: alternate;
  854. animation-delay: alternate;
  855. }
  856. .doi {
  857. -webkit-animation-delay: 0.2s;
  858. -moz-animation-delay: 0.2s;
  859. -webkit-animation-direction: alternate;
  860. animation-delay: 0.2s;
  861. animation-direction: alternate;
  862. margin-top: -6px;
  863. }
  864. .trei {
  865. -webkit-animation-delay: 0.3s;
  866. -moz-animation-delay: 0.3s;
  867. -webkit-animation-direction: alternate;
  868. animation-delay: 0.3s;
  869. animation-direction: alternate;
  870. margin-top: -6px;
  871. }
  872. .mouse {
  873. height: 42px;
  874. width: 24px;
  875. border-radius: 14px;
  876. transform: none;
  877. border: 2px solid #fff;
  878. top: 170px;
  879. }
  880. .wheel {
  881. height: 5px;
  882. width: 2px;
  883. display: block;
  884. margin: 5px auto;
  885. background: #fff;
  886. position: relative;
  887. height: 4px;
  888. width: 4px;
  889. border: 2px solid #fff;
  890. -webkit-border-radius: 8px;
  891. border-radius: 8px;
  892. }
  893. .wheel {
  894. -webkit-animation: mouse-wheel 0.6s linear infinite;
  895. -moz-animation: mouse-wheel 0.6s linear infinite;
  896. animation: mouse-wheel 0.8s linear infinite;
  897. }
  898. @-webkit-keyframes mouse-wheel {
  899. 0% {
  900. opacity: 1;
  901. -webkit-transform: translateY(0);
  902. -ms-transform: translateY(0);
  903. transform: translateY(0);
  904. }
  905. 100% {
  906. opacity: 0;
  907. -webkit-transform: translateY(6px);
  908. -ms-transform: translateY(6px);
  909. transform: translateY(6px);
  910. }
  911. }
  912. @-moz-keyframes mouse-wheel {
  913. 0% {
  914. top: 1px;
  915. }
  916. 25% {
  917. top: 5px;
  918. }
  919. 50% {
  920. top: 10px;
  921. }
  922. 75% {
  923. top: 5px;
  924. }
  925. 100% {
  926. top: 1px;
  927. }
  928. }
  929. @-o-keyframes mouse-wheel {
  930. 0% {
  931. top: 1px;
  932. }
  933. 25% {
  934. top: 2px;
  935. }
  936. 50% {
  937. top: 3px;
  938. }
  939. 75% {
  940. top: 2px;
  941. }
  942. 100% {
  943. top: 1px;
  944. }
  945. }
  946. @keyframes mouse-wheel {
  947. 0% {
  948. top: 1px;
  949. }
  950. 25% {
  951. top: 5px;
  952. }
  953. 50% {
  954. top: 15px;
  955. }
  956. 75% {
  957. top: 5px;
  958. }
  959. 100% {
  960. top: 1px;
  961. }
  962. }
  963. @-webkit-keyframes mouse-scroll {
  964. 0% {
  965. opacity: 0;
  966. }
  967. 50% {
  968. opacity: 0.5;
  969. }
  970. 100% {
  971. opacity: 1;
  972. }
  973. }
  974. @-moz-keyframes mouse-scroll {
  975. 0% {
  976. opacity: 0;
  977. }
  978. 50% {
  979. opacity: 0.5;
  980. }
  981. 100% {
  982. opacity: 1;
  983. }
  984. }
  985. @-o-keyframes mouse-scroll {
  986. 0% {
  987. opacity: 0;
  988. }
  989. 50% {
  990. opacity: 0.5;
  991. }
  992. 100% {
  993. opacity: 1;
  994. }
  995. }
  996. @keyframes mouse-scroll {
  997. 0% {
  998. opacity: 0;
  999. }
  1000. 50% {
  1001. opacity: 0.5;
  1002. }
  1003. 100% {
  1004. opacity: 1;
  1005. }
  1006. }
  1007. }
  1008. @media screen and(min-width:$desktop) {
  1009. display: none;
  1010. }
  1011. h1 {
  1012. color: #fff;
  1013. font-size: 45px;
  1014. font-weight: 900;
  1015. padding: 5px 10px;
  1016. @media screen and(max-width:$moblie) {
  1017. font-weight: 900;
  1018. font-size: 32px;
  1019. }
  1020. }
  1021. hr {
  1022. width: 30vw;
  1023. height: 2px;
  1024. color: #fff;
  1025. margin: 10px;
  1026. opacity: 1 !important;
  1027. }
  1028. #sec04-moblie-container {
  1029. padding-top: 10vw;
  1030. .col {
  1031. margin: 10px;
  1032. .card {
  1033. img {
  1034. height: 150px;
  1035. object-fit: cover;
  1036. }
  1037. border-radius: 0%;
  1038. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1039. .card-title {
  1040. font-weight: 900;
  1041. }
  1042. .learn-more {
  1043. width: 120px;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. }
  1049. // sec05 熱門作品-電腦版
  1050. #sec05 {
  1051. width: 85vw;
  1052. margin: 0 auto;
  1053. padding-top: 5vw;
  1054. padding-bottom: 5vw;
  1055. @media screen and(max-width:$moblie) {
  1056. display: none;
  1057. }
  1058. h1 {
  1059. font-size: 45px;
  1060. font-weight: 900;
  1061. padding: 15px;
  1062. }
  1063. #sec05-container {
  1064. #sec05-destop-slider {
  1065. .slick-prev:before,
  1066. .slick-next:before {
  1067. opacity: 0;
  1068. }
  1069. .slick-prev,
  1070. .slick-next {
  1071. width: 40px;
  1072. height: 40px;
  1073. content: none;
  1074. }
  1075. .slick-prev {
  1076. background-image: url(./img/arrow-table2.png);
  1077. background-repeat: no-repeat;
  1078. left: -40px;
  1079. &:hover,
  1080. &:focus {
  1081. background-image: url(./img/arrow-table2.png);
  1082. background-repeat: no-repeat;
  1083. }
  1084. }
  1085. .slick-next {
  1086. background-image: url(./img/arrow-table.png);
  1087. background-repeat: no-repeat;
  1088. right: -50px;
  1089. &:hover,
  1090. &:focus {
  1091. background-image: url(./img/arrow-table.png);
  1092. background-repeat: no-repeat;
  1093. }
  1094. }
  1095. }
  1096. .col {
  1097. margin: 5px;
  1098. }
  1099. .card {
  1100. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1101. }
  1102. }
  1103. }
  1104. // sec05熱門作品-手機板
  1105. #sec05-moblie {
  1106. padding-top: 5vw;
  1107. padding-bottom: 10vw;
  1108. overflow: hidden;
  1109. @media screen and(min-width:$desktop) {
  1110. display: none;
  1111. }
  1112. #sec05-moblie-container {
  1113. position: relative;
  1114. .arrow-table {
  1115. position: fixed;
  1116. width: 25px;
  1117. right: 5px;
  1118. bottom: 300px;
  1119. z-index: 6;
  1120. @media screen and(max-width:350px) {
  1121. right: 10px;
  1122. }
  1123. }
  1124. }
  1125. h1 {
  1126. font-size: 45px;
  1127. font-weight: 900;
  1128. padding: 15px;
  1129. }
  1130. #sec05-moblie-slider {
  1131. .sec05-moblie-box {
  1132. padding: 20px;
  1133. margin: 30px;
  1134. @media screen and(max-width:400px) {
  1135. padding: 5px;
  1136. margin: 20px;
  1137. }
  1138. .card {
  1139. border: none;
  1140. }
  1141. }
  1142. }
  1143. .sec05-button {
  1144. text-align: center;
  1145. margin-top: -50px;
  1146. .mouse_scroll {
  1147. display: inline-block;
  1148. margin: 0 auto;
  1149. width: 24px;
  1150. transform: rotate(90deg);
  1151. }
  1152. .testright {
  1153. transform: rotate(180deg);
  1154. }
  1155. .m_scroll_arrows {
  1156. display: block;
  1157. width: 5px;
  1158. height: 5px;
  1159. -ms-transform: rotate(45deg); /* IE 9 */
  1160. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1161. transform: rotate(45deg);
  1162. border-right: 2px solid #000;
  1163. border-bottom: 2px solid #000;
  1164. margin: 0 0 3px 4px;
  1165. width: 16px;
  1166. height: 16px;
  1167. }
  1168. .unu {
  1169. margin-top: 1px;
  1170. }
  1171. .unu,
  1172. .doi,
  1173. .trei {
  1174. -webkit-animation: mouse-scroll 1s infinite;
  1175. -moz-animation: mouse-scroll 1s infinite;
  1176. animation: mouse-scroll 1s infinite;
  1177. }
  1178. .unu {
  1179. -webkit-animation-delay: 0.1s;
  1180. -moz-animation-delay: 0.1s;
  1181. -webkit-animation-direction: alternate;
  1182. animation-direction: alternate;
  1183. animation-delay: alternate;
  1184. }
  1185. .doi {
  1186. -webkit-animation-delay: 0.2s;
  1187. -moz-animation-delay: 0.2s;
  1188. -webkit-animation-direction: alternate;
  1189. animation-delay: 0.2s;
  1190. animation-direction: alternate;
  1191. margin-top: -6px;
  1192. }
  1193. .trei {
  1194. -webkit-animation-delay: 0.3s;
  1195. -moz-animation-delay: 0.3s;
  1196. -webkit-animation-direction: alternate;
  1197. animation-delay: 0.3s;
  1198. animation-direction: alternate;
  1199. margin-top: -6px;
  1200. }
  1201. .mouse {
  1202. height: 42px;
  1203. width: 24px;
  1204. border-radius: 14px;
  1205. transform: none;
  1206. border: 2px solid #000;
  1207. top: 170px;
  1208. }
  1209. .wheel {
  1210. height: 5px;
  1211. width: 2px;
  1212. display: block;
  1213. margin: 5px auto;
  1214. background: #000;
  1215. position: relative;
  1216. height: 4px;
  1217. width: 4px;
  1218. border: 2px solid #000;
  1219. -webkit-border-radius: 8px;
  1220. border-radius: 8px;
  1221. }
  1222. .wheel {
  1223. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1224. -moz-animation: mouse-wheel 0.6s linear infinite;
  1225. animation: mouse-wheel 0.8s linear infinite;
  1226. }
  1227. @-webkit-keyframes mouse-wheel {
  1228. 0% {
  1229. opacity: 1;
  1230. -webkit-transform: translateY(0);
  1231. -ms-transform: translateY(0);
  1232. transform: translateY(0);
  1233. }
  1234. 100% {
  1235. opacity: 0;
  1236. -webkit-transform: translateY(6px);
  1237. -ms-transform: translateY(6px);
  1238. transform: translateY(6px);
  1239. }
  1240. }
  1241. @-moz-keyframes mouse-wheel {
  1242. 0% {
  1243. top: 1px;
  1244. }
  1245. 25% {
  1246. top: 5px;
  1247. }
  1248. 50% {
  1249. top: 10px;
  1250. }
  1251. 75% {
  1252. top: 5px;
  1253. }
  1254. 100% {
  1255. top: 1px;
  1256. }
  1257. }
  1258. @-o-keyframes mouse-wheel {
  1259. 0% {
  1260. top: 1px;
  1261. }
  1262. 25% {
  1263. top: 2px;
  1264. }
  1265. 50% {
  1266. top: 3px;
  1267. }
  1268. 75% {
  1269. top: 2px;
  1270. }
  1271. 100% {
  1272. top: 1px;
  1273. }
  1274. }
  1275. @keyframes mouse-wheel {
  1276. 0% {
  1277. top: 1px;
  1278. }
  1279. 25% {
  1280. top: 5px;
  1281. }
  1282. 50% {
  1283. top: 15px;
  1284. }
  1285. 75% {
  1286. top: 5px;
  1287. }
  1288. 100% {
  1289. top: 1px;
  1290. }
  1291. }
  1292. @-webkit-keyframes mouse-scroll {
  1293. 0% {
  1294. opacity: 0;
  1295. }
  1296. 50% {
  1297. opacity: 0.5;
  1298. }
  1299. 100% {
  1300. opacity: 1;
  1301. }
  1302. }
  1303. @-moz-keyframes mouse-scroll {
  1304. 0% {
  1305. opacity: 0;
  1306. }
  1307. 50% {
  1308. opacity: 0.5;
  1309. }
  1310. 100% {
  1311. opacity: 1;
  1312. }
  1313. }
  1314. @-o-keyframes mouse-scroll {
  1315. 0% {
  1316. opacity: 0;
  1317. }
  1318. 50% {
  1319. opacity: 0.5;
  1320. }
  1321. 100% {
  1322. opacity: 1;
  1323. }
  1324. }
  1325. @keyframes mouse-scroll {
  1326. 0% {
  1327. opacity: 0;
  1328. }
  1329. 50% {
  1330. opacity: 0.5;
  1331. }
  1332. 100% {
  1333. opacity: 1;
  1334. }
  1335. }
  1336. }
  1337. }
  1338. // sec06 NFT資訊
  1339. #sec06 {
  1340. width: 100vw;
  1341. padding-top: 5vw;
  1342. padding-bottom: 10vw;
  1343. background: #525252;
  1344. @media screen and(max-width:$moblie) {
  1345. background: #313131;
  1346. }
  1347. .sec06-button {
  1348. text-align: center;
  1349. width: 75vw;
  1350. @media screen and(min-width:$desktop) {
  1351. display: none;
  1352. }
  1353. .mouse_scroll {
  1354. display: inline-block;
  1355. margin: 0 auto;
  1356. width: 24px;
  1357. transform: rotate(90deg);
  1358. }
  1359. .testright {
  1360. transform: rotate(180deg);
  1361. }
  1362. .m_scroll_arrows {
  1363. display: block;
  1364. width: 5px;
  1365. height: 5px;
  1366. -ms-transform: rotate(45deg); /* IE 9 */
  1367. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1368. transform: rotate(45deg);
  1369. border-right: 2px solid #fff;
  1370. border-bottom: 2px solid #fff;
  1371. margin: 0 0 3px 4px;
  1372. width: 16px;
  1373. height: 16px;
  1374. }
  1375. .unu {
  1376. margin-top: 1px;
  1377. }
  1378. .unu,
  1379. .doi,
  1380. .trei {
  1381. -webkit-animation: mouse-scroll 1s infinite;
  1382. -moz-animation: mouse-scroll 1s infinite;
  1383. animation: mouse-scroll 1s infinite;
  1384. }
  1385. .unu {
  1386. -webkit-animation-delay: 0.1s;
  1387. -moz-animation-delay: 0.1s;
  1388. -webkit-animation-direction: alternate;
  1389. animation-direction: alternate;
  1390. animation-delay: alternate;
  1391. }
  1392. .doi {
  1393. -webkit-animation-delay: 0.2s;
  1394. -moz-animation-delay: 0.2s;
  1395. -webkit-animation-direction: alternate;
  1396. animation-delay: 0.2s;
  1397. animation-direction: alternate;
  1398. margin-top: -6px;
  1399. }
  1400. .trei {
  1401. -webkit-animation-delay: 0.3s;
  1402. -moz-animation-delay: 0.3s;
  1403. -webkit-animation-direction: alternate;
  1404. animation-delay: 0.3s;
  1405. animation-direction: alternate;
  1406. margin-top: -6px;
  1407. }
  1408. .mouse {
  1409. height: 42px;
  1410. width: 24px;
  1411. border-radius: 14px;
  1412. transform: none;
  1413. border: 2px solid #fff;
  1414. top: 170px;
  1415. }
  1416. .wheel {
  1417. height: 5px;
  1418. width: 2px;
  1419. display: block;
  1420. margin: 5px auto;
  1421. background: #fff;
  1422. position: relative;
  1423. height: 4px;
  1424. width: 4px;
  1425. border: 2px solid #fff;
  1426. -webkit-border-radius: 8px;
  1427. border-radius: 8px;
  1428. }
  1429. .wheel {
  1430. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1431. -moz-animation: mouse-wheel 0.6s linear infinite;
  1432. animation: mouse-wheel 0.8s linear infinite;
  1433. }
  1434. @-webkit-keyframes mouse-wheel {
  1435. 0% {
  1436. opacity: 1;
  1437. -webkit-transform: translateY(0);
  1438. -ms-transform: translateY(0);
  1439. transform: translateY(0);
  1440. }
  1441. 100% {
  1442. opacity: 0;
  1443. -webkit-transform: translateY(6px);
  1444. -ms-transform: translateY(6px);
  1445. transform: translateY(6px);
  1446. }
  1447. }
  1448. @-moz-keyframes mouse-wheel {
  1449. 0% {
  1450. top: 1px;
  1451. }
  1452. 25% {
  1453. top: 5px;
  1454. }
  1455. 50% {
  1456. top: 10px;
  1457. }
  1458. 75% {
  1459. top: 5px;
  1460. }
  1461. 100% {
  1462. top: 1px;
  1463. }
  1464. }
  1465. @-o-keyframes mouse-wheel {
  1466. 0% {
  1467. top: 1px;
  1468. }
  1469. 25% {
  1470. top: 2px;
  1471. }
  1472. 50% {
  1473. top: 3px;
  1474. }
  1475. 75% {
  1476. top: 2px;
  1477. }
  1478. 100% {
  1479. top: 1px;
  1480. }
  1481. }
  1482. @keyframes mouse-wheel {
  1483. 0% {
  1484. top: 1px;
  1485. }
  1486. 25% {
  1487. top: 5px;
  1488. }
  1489. 50% {
  1490. top: 15px;
  1491. }
  1492. 75% {
  1493. top: 5px;
  1494. }
  1495. 100% {
  1496. top: 1px;
  1497. }
  1498. }
  1499. @-webkit-keyframes mouse-scroll {
  1500. 0% {
  1501. opacity: 0;
  1502. }
  1503. 50% {
  1504. opacity: 0.5;
  1505. }
  1506. 100% {
  1507. opacity: 1;
  1508. }
  1509. }
  1510. @-moz-keyframes mouse-scroll {
  1511. 0% {
  1512. opacity: 0;
  1513. }
  1514. 50% {
  1515. opacity: 0.5;
  1516. }
  1517. 100% {
  1518. opacity: 1;
  1519. }
  1520. }
  1521. @-o-keyframes mouse-scroll {
  1522. 0% {
  1523. opacity: 0;
  1524. }
  1525. 50% {
  1526. opacity: 0.5;
  1527. }
  1528. 100% {
  1529. opacity: 1;
  1530. }
  1531. }
  1532. @keyframes mouse-scroll {
  1533. 0% {
  1534. opacity: 0;
  1535. }
  1536. 50% {
  1537. opacity: 0.5;
  1538. }
  1539. 100% {
  1540. opacity: 1;
  1541. }
  1542. }
  1543. }
  1544. h1 {
  1545. font-size: 45px;
  1546. font-weight: 900;
  1547. padding: 15px;
  1548. color: #fff;
  1549. }
  1550. hr {
  1551. width: 12vw;
  1552. height: 2px;
  1553. color: #fff;
  1554. margin: 10px;
  1555. opacity: 1 !important;
  1556. @media screen and(max-width:$moblie) {
  1557. width: 30vw;
  1558. }
  1559. }
  1560. #sec06-container {
  1561. width: 80vw;
  1562. .slick-prev:before,
  1563. .slick-next:before {
  1564. opacity: 0;
  1565. }
  1566. .slick-prev,
  1567. .slick-next {
  1568. width: 40px;
  1569. height: 40px;
  1570. content: none;
  1571. }
  1572. .slick-prev {
  1573. background-image: url(./img/sec06/sec06-arrow-2.png);
  1574. background-repeat: no-repeat;
  1575. left: -40px;
  1576. &:hover,
  1577. &:focus {
  1578. background-image: url(./img/sec06/sec06-arrow-2.png);
  1579. background-repeat: no-repeat;
  1580. }
  1581. }
  1582. .slick-next {
  1583. background-image: url(./img/sec06/sec06-arrow.png);
  1584. background-repeat: no-repeat;
  1585. right: -50px;
  1586. &:hover,
  1587. &:focus {
  1588. background-image: url(./img/sec06/sec06-arrow.png);
  1589. background-repeat: no-repeat;
  1590. }
  1591. }
  1592. .card {
  1593. margin: 10px;
  1594. display: inline-block !important;
  1595. height: 480px !important;
  1596. img {
  1597. height: 150px;
  1598. object-fit: cover;
  1599. }
  1600. border-radius: 0%;
  1601. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1602. .card-title {
  1603. font-weight: 900;
  1604. font-size: 18px;
  1605. }
  1606. .learn-more {
  1607. width: 120px;
  1608. }
  1609. }
  1610. .learn-more {
  1611. width: 120px;
  1612. }
  1613. }
  1614. }
  1615. // sec07 table 電腦版
  1616. #sec07 {
  1617. padding-top: 5vw;
  1618. padding-bottom: 5vw;
  1619. @media screen and(max-width:$moblie) {
  1620. display: none;
  1621. }
  1622. .NFT-Collections-Sales-Volume {
  1623. width: 80vw;
  1624. margin: 0 auto;
  1625. margin-top: -120px;
  1626. margin-bottom: 50px;
  1627. @media screen and(max-width:$moblie) {
  1628. display: none;
  1629. }
  1630. h1 {
  1631. padding: 0;
  1632. margin: 0;
  1633. font-weight: normal;
  1634. color: #fff;
  1635. letter-spacing: 3px;
  1636. font-size: 50px;
  1637. }
  1638. }
  1639. .table {
  1640. text-align: center;
  1641. thead tr th {
  1642. border: 0;
  1643. }
  1644. td {
  1645. display: table-cell;
  1646. vertical-align: middle;
  1647. text-align: left;
  1648. img {
  1649. width: 50px;
  1650. }
  1651. .data-line {
  1652. width: 100px;
  1653. }
  1654. }
  1655. th {
  1656. display: table-cell;
  1657. vertical-align: middle;
  1658. text-align: left;
  1659. }
  1660. img {
  1661. padding: 5px;
  1662. }
  1663. }
  1664. .sec07-table-button {
  1665. text-align: right;
  1666. .data-button {
  1667. text-align: left;
  1668. border-radius: 25px;
  1669. width: 10vw;
  1670. padding: 5px 20px;
  1671. color: #000;
  1672. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1673. background-size: 18px 18px;
  1674. background-color: #fff;
  1675. border: 1px solid #000;
  1676. }
  1677. }
  1678. }
  1679. // sec07 table手機板 標題
  1680. #sec07-moblir-title {
  1681. background: #414141;
  1682. @media screen and(min-width:$desktop) {
  1683. display: none;
  1684. }
  1685. #sec07-container {
  1686. padding: 15px;
  1687. font-weight: 900;
  1688. color: #fff;
  1689. }
  1690. }
  1691. // sec07 table手機板
  1692. #sec07-moblie {
  1693. padding-top: 5vw;
  1694. padding-bottom: 5vw;
  1695. @media screen and(min-width:$desktop) {
  1696. display: none;
  1697. }
  1698. .table {
  1699. text-align: center;
  1700. thead tr th {
  1701. border: 0;
  1702. }
  1703. td {
  1704. display: table-cell;
  1705. vertical-align: middle;
  1706. text-align-last: left;
  1707. font-size: 14px;
  1708. img {
  1709. width: 30px;
  1710. }
  1711. .data-line {
  1712. width: 80px;
  1713. }
  1714. }
  1715. th {
  1716. display: table-cell;
  1717. vertical-align: middle;
  1718. text-align: left;
  1719. font-size: 14px;
  1720. }
  1721. img {
  1722. padding: 5px;
  1723. width: 50px;
  1724. }
  1725. }
  1726. .sec07-table-button {
  1727. text-align: right;
  1728. .data-button {
  1729. text-align: left;
  1730. border-radius: 25px;
  1731. width: 35vw;
  1732. padding: 5px 20px;
  1733. color: #000;
  1734. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1735. background-size: 18px 18px;
  1736. background-color: #fff;
  1737. border: 1px solid #000;
  1738. }
  1739. }
  1740. }
  1741. #sec08 {
  1742. padding-top: 5vw;
  1743. #sec08-container-box {
  1744. background-size: contain;
  1745. background-repeat: no-repeat;
  1746. background-blend-mode: overlay;
  1747. }
  1748. #sec08-title {
  1749. padding: 5vw;
  1750. background: #414141;
  1751. h1 {
  1752. text-align: center;
  1753. color: #fff;
  1754. font-size: 45px;
  1755. font-weight: 900;
  1756. padding: 5px 10px;
  1757. @media screen and(max-width:$moblie) {
  1758. font-weight: 900;
  1759. font-size: 32px;
  1760. }
  1761. }
  1762. hr {
  1763. width: 5vw;
  1764. height: 5px;
  1765. color: #fff;
  1766. margin: 10px auto;
  1767. opacity: 1 !important;
  1768. @media screen and(max-width:$moblie) {
  1769. width: 30vw;
  1770. }
  1771. }
  1772. }
  1773. #sec08-container {
  1774. text-align: center;
  1775. .card {
  1776. padding-top: 5vw;
  1777. padding-bottom: 5vw;
  1778. border: none;
  1779. .adv4 {
  1780. display: flex;
  1781. align-items: center;
  1782. img {
  1783. align-items: center;
  1784. object-fit: cover;
  1785. }
  1786. }
  1787. }
  1788. .col-3 {
  1789. margin: 10px 0;
  1790. img {
  1791. object-fit: cover;
  1792. }
  1793. }
  1794. }
  1795. }
  1796. #sec09 {
  1797. #sec09-container-box {
  1798. background-size: contain;
  1799. background-repeat: no-repeat;
  1800. background-blend-mode: overlay;
  1801. }
  1802. #sec09-title {
  1803. padding: 5vw;
  1804. background: #fff;
  1805. h1 {
  1806. text-align: center;
  1807. color: #000;
  1808. font-size: 45px;
  1809. font-weight: 900;
  1810. padding: 5px 10px;
  1811. @media screen and(max-width:$moblie) {
  1812. font-weight: 900;
  1813. font-size: 32px;
  1814. }
  1815. }
  1816. hr {
  1817. width: 5vw;
  1818. height: 5px;
  1819. color: #000;
  1820. margin: 10px auto;
  1821. opacity: 1 !important;
  1822. @media screen and(max-width:$moblie) {
  1823. width: 30vw;
  1824. }
  1825. }
  1826. }
  1827. #sec09-container {
  1828. text-align: center;
  1829. .card {
  1830. padding-top: 5vw;
  1831. padding-bottom: 5vw;
  1832. border: none;
  1833. .adv4 {
  1834. display: flex;
  1835. align-items: center;
  1836. img {
  1837. align-items: center;
  1838. margin: 0 30px;
  1839. width: 300px;
  1840. @media screen and(max-width:$moblie) {
  1841. width: 100px;
  1842. margin: 0px;
  1843. }
  1844. }
  1845. }
  1846. }
  1847. .col-4 {
  1848. margin: 10px 0;
  1849. padding: 15px;
  1850. img {
  1851. width: 200px;
  1852. object-fit: cover;
  1853. @media screen and(max-width:$moblie) {
  1854. width: 100px;
  1855. }
  1856. }
  1857. }
  1858. }
  1859. }
  1860. // 頁尾
  1861. #footer {
  1862. width: 100vw;
  1863. text-align: center;
  1864. line-height: 2;
  1865. background: #313131;
  1866. color: #fff;
  1867. padding-bottom: 3vw !important;
  1868. .footer-link {
  1869. padding-top: 3vw;
  1870. a {
  1871. text-decoration: none;
  1872. font-size: 20px;
  1873. padding: 10px;
  1874. color: #fff;
  1875. @media screen and(max-width:$moblie) {
  1876. font-size: 14px;
  1877. padding: 0 !important;
  1878. }
  1879. @media screen and(max-width:400px) {
  1880. font-size: 12px;
  1881. }
  1882. span {
  1883. font-size: 28px;
  1884. @media screen and(max-width:$moblie) {
  1885. font-size: 16px;
  1886. }
  1887. @media screen and(max-width:350px) {
  1888. font-size: 14px;
  1889. }
  1890. }
  1891. }
  1892. }
  1893. .text {
  1894. padding-top: 3vw;
  1895. a {
  1896. text-decoration: none;
  1897. color: #fff;
  1898. }
  1899. h2 {
  1900. font-size: 20px;
  1901. margin: 10px;
  1902. letter-spacing: 1px;
  1903. display: inline;
  1904. @media screen and(max-width:$moblie) {
  1905. display: block;
  1906. font-size: 16px;
  1907. margin: 8px;
  1908. }
  1909. }
  1910. p {
  1911. margin: 0 !important;
  1912. }
  1913. }
  1914. }