style.scss 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  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. height: 780px;
  473. text-align: center;
  474. display: inline-block !important;
  475. transition: 0.3s;
  476. &:hover {
  477. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  478. }
  479. }
  480. }
  481. }
  482. .sec-work-title {
  483. h1 {
  484. font-size: 45px;
  485. font-weight: 900;
  486. padding: 15px;
  487. }
  488. }
  489. }
  490. // sec02 TOP排名 電腦版
  491. #sec02 {
  492. background: #414141;
  493. padding: 3vw;
  494. @media screen and(max-width:$moblie) {
  495. display: none;
  496. }
  497. #sec02-container {
  498. width: 90vw;
  499. padding: 15px;
  500. font-weight: 900;
  501. color: #fff;
  502. position: relative;
  503. // 電腦版top圖片排行
  504. #sec02-top-box {
  505. position: relative;
  506. #sec02-content {
  507. position: absolute;
  508. top: 10px;
  509. left: 300px;
  510. }
  511. .sec02-box1 {
  512. color: #000;
  513. width: 13vw;
  514. img {
  515. display: inline;
  516. width: 150px;
  517. height: 200px;
  518. object-fit: cover;
  519. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  520. }
  521. .sec02-top-text {
  522. h1 {
  523. font-size: 50px;
  524. }
  525. span {
  526. font-size: 30px;
  527. }
  528. }
  529. }
  530. }
  531. }
  532. }
  533. // sec02 top排名手機板
  534. #sec02-moblie {
  535. background: #414141;
  536. background: linear-gradient(180deg, #414141 50%, transparent 30%, #fff 55%);
  537. padding-top: 3vw;
  538. padding-bottom: 10vw;
  539. @media screen and(min-width:$desktop) {
  540. display: none;
  541. }
  542. #sec02-container {
  543. padding: 15px;
  544. font-weight: 900;
  545. color: #fff;
  546. width: 100vw;
  547. .sec02-top1-box {
  548. h1 {
  549. font-size: 40px;
  550. padding: 3vw 0;
  551. }
  552. img {
  553. width: 80px;
  554. }
  555. span {
  556. font-size: 30px;
  557. }
  558. .sec02-top-text {
  559. text-align: center;
  560. }
  561. }
  562. #sec02-top-box {
  563. width: 95vw;
  564. margin: 5px;
  565. .sec02-box1 {
  566. color: #000;
  567. #top1 {
  568. width: 100px;
  569. height: 130px;
  570. @media screen and(max-width:350px) {
  571. width: 100px;
  572. height: 130px;
  573. }
  574. }
  575. img {
  576. width: 80px;
  577. height: 120px;
  578. @media screen and(max-width:350px) {
  579. width: 70px;
  580. height: 100px;
  581. }
  582. }
  583. .sec02-top-text {
  584. font-size: 12px;
  585. text-align: left;
  586. @media screen and(max-width:350px) {
  587. }
  588. span {
  589. font-size: 30px;
  590. @media screen and(max-width:350px) {
  591. font-size: 25px;
  592. }
  593. }
  594. }
  595. }
  596. }
  597. }
  598. }
  599. // sec03 排名table-電腦版
  600. #sec03 {
  601. padding-top: 15vw;
  602. padding-bottom: 5vw;
  603. @media screen and(max-width:$moblie) {
  604. display: none;
  605. }
  606. #sec03-table {
  607. .sec03-table-title {
  608. font-family: 微軟正黑體;
  609. font-weight: 900;
  610. padding: 15px;
  611. font-size: 35px;
  612. }
  613. .table {
  614. th {
  615. font-size: 40px;
  616. display: table-cell;
  617. vertical-align: middle;
  618. }
  619. td {
  620. padding: 15px;
  621. a {
  622. text-decoration: none;
  623. color: #000;
  624. }
  625. }
  626. img {
  627. width: 50px;
  628. }
  629. .sec03-table-text {
  630. padding: 10px;
  631. display: table-cell;
  632. vertical-align: middle;
  633. h1 {
  634. font-size: 20px;
  635. margin: 0;
  636. font-weight: 900;
  637. }
  638. p {
  639. margin: 0;
  640. color: #9b9b9b;
  641. }
  642. }
  643. }
  644. }
  645. }
  646. // sec03排名table-手機板
  647. #sec03-moblie {
  648. position: relative;
  649. .arrow-table {
  650. position: fixed;
  651. width: 25px;
  652. right: 15px;
  653. bottom: 250px;
  654. z-index: 6;
  655. @media screen and(max-width:350px) {
  656. right: 10px;
  657. bottom: 200px;
  658. }
  659. }
  660. .sec03-table-title,
  661. .sec03-table-title2 {
  662. font-family: 微軟正黑體;
  663. font-weight: 900;
  664. font-size: 14px;
  665. display: inline-block;
  666. color: #9b9b9b;
  667. @media screen and(max-width:350px) {
  668. font-size: 12px;
  669. }
  670. }
  671. .contant-toggle {
  672. display: inline-block;
  673. color: #000;
  674. padding-bottom: 10px;
  675. border-bottom: 2px solid #000;
  676. }
  677. #sec03-slider {
  678. padding-top: 5vw;
  679. .slick-slide img {
  680. display: inline;
  681. }
  682. #sec03-slider1,
  683. #sec03-slider2 {
  684. margin-left: 10px;
  685. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  686. @media screen and(max-width:350px) {
  687. margin: 0 5px;
  688. }
  689. }
  690. .table {
  691. th {
  692. font-size: 40px;
  693. display: table-cell;
  694. vertical-align: middle;
  695. padding: 15px;
  696. @media screen and(max-width:350px) {
  697. font-size: 25px;
  698. }
  699. }
  700. td {
  701. display: table-cell;
  702. vertical-align: middle;
  703. padding: 15px;
  704. padding: 10px 0;
  705. @media screen and(max-width:350px) {
  706. padding: 0px;
  707. }
  708. a {
  709. text-decoration: none;
  710. color: #000;
  711. }
  712. }
  713. img {
  714. width: 50px;
  715. }
  716. .sec03-table-text {
  717. padding: 0px 0px 0px 3px;
  718. display: table-cell;
  719. vertical-align: middle;
  720. @media screen and(max-width:350px) {
  721. padding: 0px;
  722. }
  723. h1 {
  724. font-size: 14px;
  725. margin: 0;
  726. font-weight: 900;
  727. }
  728. p {
  729. margin: 0;
  730. font-size: 12px;
  731. color: #9b9b9b;
  732. }
  733. }
  734. }
  735. }
  736. @media screen and(min-width:$desktop) {
  737. display: none;
  738. }
  739. }
  740. // sec04 洞察報告 電腦版
  741. #sec04 {
  742. padding-top: 5vw;
  743. padding-bottom: 5vw;
  744. background: #414141;
  745. background-position: center center;
  746. background-size: cover;
  747. @media screen and(max-width:$moblie) {
  748. display: none;
  749. }
  750. .sec04-title {
  751. padding-bottom: 1vw;
  752. h1 {
  753. color: #fff;
  754. font-size: 45px;
  755. font-weight: 900;
  756. padding: 10px 10px;
  757. @media screen and(max-width:$moblie) {
  758. font-weight: 900;
  759. font-size: 32px;
  760. }
  761. }
  762. hr {
  763. width: 12vw;
  764. height: 2px;
  765. color: #fff !important;
  766. margin: 10px;
  767. opacity: 1 !important;
  768. @media screen and(max-width:$moblie) {
  769. width: 30vw;
  770. }
  771. }
  772. }
  773. .learn-more {
  774. width: 120px;
  775. }
  776. #sec04-container {
  777. background: linear-gradient(180deg, #414141 15%, #eee 0%);
  778. // background: rgba(0,0,0,0.72);
  779. padding: 20px;
  780. padding-bottom: 50px;
  781. .card {
  782. border: none;
  783. img {
  784. height: 150px;
  785. object-fit: cover;
  786. }
  787. border-radius: 0%;
  788. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  789. .card-title {
  790. font-weight: 900;
  791. }
  792. }
  793. }
  794. }
  795. // sec04洞察報告 手機板
  796. #sec04-moblie {
  797. padding-top: 5vw;
  798. padding-bottom: 5vw;
  799. background: #414141;
  800. position: relative;
  801. overflow: hidden;
  802. .arrow-table {
  803. position: fixed;
  804. width: 25px;
  805. right: 15px;
  806. bottom: 240px;
  807. z-index: 6;
  808. @media screen and(max-width:350px) {
  809. right: 10px;
  810. }
  811. }
  812. .sec04-button {
  813. text-align: center;
  814. margin-top: -50px;
  815. width: 85vw;
  816. @media screen and(min-width:$desktop) {
  817. display: none;
  818. }
  819. .mouse_scroll {
  820. display: inline-block;
  821. margin: 0 auto;
  822. width: 24px;
  823. transform: rotate(90deg);
  824. }
  825. .testright {
  826. transform: rotate(180deg);
  827. }
  828. .m_scroll_arrows {
  829. display: block;
  830. width: 5px;
  831. height: 5px;
  832. -ms-transform: rotate(45deg); /* IE 9 */
  833. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  834. transform: rotate(45deg);
  835. border-right: 2px solid #fff;
  836. border-bottom: 2px solid #fff;
  837. margin: 0 0 3px 4px;
  838. width: 16px;
  839. height: 16px;
  840. }
  841. .unu {
  842. margin-top: 1px;
  843. }
  844. .unu,
  845. .doi,
  846. .trei {
  847. -webkit-animation: mouse-scroll 1s infinite;
  848. -moz-animation: mouse-scroll 1s infinite;
  849. animation: mouse-scroll 1s infinite;
  850. }
  851. .unu {
  852. -webkit-animation-delay: 0.1s;
  853. -moz-animation-delay: 0.1s;
  854. -webkit-animation-direction: alternate;
  855. animation-direction: alternate;
  856. animation-delay: alternate;
  857. }
  858. .doi {
  859. -webkit-animation-delay: 0.2s;
  860. -moz-animation-delay: 0.2s;
  861. -webkit-animation-direction: alternate;
  862. animation-delay: 0.2s;
  863. animation-direction: alternate;
  864. margin-top: -6px;
  865. }
  866. .trei {
  867. -webkit-animation-delay: 0.3s;
  868. -moz-animation-delay: 0.3s;
  869. -webkit-animation-direction: alternate;
  870. animation-delay: 0.3s;
  871. animation-direction: alternate;
  872. margin-top: -6px;
  873. }
  874. .mouse {
  875. height: 42px;
  876. width: 24px;
  877. border-radius: 14px;
  878. transform: none;
  879. border: 2px solid #fff;
  880. top: 170px;
  881. }
  882. .wheel {
  883. height: 5px;
  884. width: 2px;
  885. display: block;
  886. margin: 5px auto;
  887. background: #fff;
  888. position: relative;
  889. height: 4px;
  890. width: 4px;
  891. border: 2px solid #fff;
  892. -webkit-border-radius: 8px;
  893. border-radius: 8px;
  894. }
  895. .wheel {
  896. -webkit-animation: mouse-wheel 0.6s linear infinite;
  897. -moz-animation: mouse-wheel 0.6s linear infinite;
  898. animation: mouse-wheel 0.8s linear infinite;
  899. }
  900. @-webkit-keyframes mouse-wheel {
  901. 0% {
  902. opacity: 1;
  903. -webkit-transform: translateY(0);
  904. -ms-transform: translateY(0);
  905. transform: translateY(0);
  906. }
  907. 100% {
  908. opacity: 0;
  909. -webkit-transform: translateY(6px);
  910. -ms-transform: translateY(6px);
  911. transform: translateY(6px);
  912. }
  913. }
  914. @-moz-keyframes mouse-wheel {
  915. 0% {
  916. top: 1px;
  917. }
  918. 25% {
  919. top: 5px;
  920. }
  921. 50% {
  922. top: 10px;
  923. }
  924. 75% {
  925. top: 5px;
  926. }
  927. 100% {
  928. top: 1px;
  929. }
  930. }
  931. @-o-keyframes mouse-wheel {
  932. 0% {
  933. top: 1px;
  934. }
  935. 25% {
  936. top: 2px;
  937. }
  938. 50% {
  939. top: 3px;
  940. }
  941. 75% {
  942. top: 2px;
  943. }
  944. 100% {
  945. top: 1px;
  946. }
  947. }
  948. @keyframes mouse-wheel {
  949. 0% {
  950. top: 1px;
  951. }
  952. 25% {
  953. top: 5px;
  954. }
  955. 50% {
  956. top: 15px;
  957. }
  958. 75% {
  959. top: 5px;
  960. }
  961. 100% {
  962. top: 1px;
  963. }
  964. }
  965. @-webkit-keyframes mouse-scroll {
  966. 0% {
  967. opacity: 0;
  968. }
  969. 50% {
  970. opacity: 0.5;
  971. }
  972. 100% {
  973. opacity: 1;
  974. }
  975. }
  976. @-moz-keyframes mouse-scroll {
  977. 0% {
  978. opacity: 0;
  979. }
  980. 50% {
  981. opacity: 0.5;
  982. }
  983. 100% {
  984. opacity: 1;
  985. }
  986. }
  987. @-o-keyframes mouse-scroll {
  988. 0% {
  989. opacity: 0;
  990. }
  991. 50% {
  992. opacity: 0.5;
  993. }
  994. 100% {
  995. opacity: 1;
  996. }
  997. }
  998. @keyframes mouse-scroll {
  999. 0% {
  1000. opacity: 0;
  1001. }
  1002. 50% {
  1003. opacity: 0.5;
  1004. }
  1005. 100% {
  1006. opacity: 1;
  1007. }
  1008. }
  1009. }
  1010. @media screen and(min-width:$desktop) {
  1011. display: none;
  1012. }
  1013. h1 {
  1014. color: #fff;
  1015. font-size: 45px;
  1016. font-weight: 900;
  1017. padding: 5px 10px;
  1018. @media screen and(max-width:$moblie) {
  1019. font-weight: 900;
  1020. font-size: 32px;
  1021. }
  1022. }
  1023. hr {
  1024. width: 30vw;
  1025. height: 2px;
  1026. color: #fff;
  1027. margin: 10px;
  1028. opacity: 1 !important;
  1029. }
  1030. #sec04-moblie-container {
  1031. padding-top: 10vw;
  1032. .col {
  1033. margin: 10px;
  1034. .card {
  1035. img {
  1036. height: 150px;
  1037. object-fit: cover;
  1038. }
  1039. border-radius: 0%;
  1040. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1041. .card-title {
  1042. font-weight: 900;
  1043. }
  1044. .learn-more {
  1045. width: 120px;
  1046. }
  1047. }
  1048. }
  1049. }
  1050. }
  1051. // sec05 熱門作品-電腦版
  1052. #sec05 {
  1053. width: 85vw;
  1054. margin: 0 auto;
  1055. padding-top: 5vw;
  1056. padding-bottom: 5vw;
  1057. @media screen and(max-width:$moblie) {
  1058. display: none;
  1059. }
  1060. h1 {
  1061. font-size: 45px;
  1062. font-weight: 900;
  1063. padding: 15px;
  1064. }
  1065. #sec05-container {
  1066. #sec05-destop-slider {
  1067. .slick-prev:before,
  1068. .slick-next:before {
  1069. opacity: 0;
  1070. }
  1071. .slick-prev,
  1072. .slick-next {
  1073. width: 40px;
  1074. height: 40px;
  1075. content: none;
  1076. }
  1077. .slick-prev {
  1078. background-image: url(./img/arrow-table2.png);
  1079. background-repeat: no-repeat;
  1080. left: -40px;
  1081. &:hover,
  1082. &:focus {
  1083. background-image: url(./img/arrow-table2.png);
  1084. background-repeat: no-repeat;
  1085. }
  1086. }
  1087. .slick-next {
  1088. background-image: url(./img/arrow-table.png);
  1089. background-repeat: no-repeat;
  1090. right: -50px;
  1091. &:hover,
  1092. &:focus {
  1093. background-image: url(./img/arrow-table.png);
  1094. background-repeat: no-repeat;
  1095. }
  1096. }
  1097. }
  1098. .col {
  1099. margin: 5px;
  1100. }
  1101. .card {
  1102. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1103. }
  1104. }
  1105. }
  1106. // sec05熱門作品-手機板
  1107. #sec05-moblie {
  1108. padding-top: 5vw;
  1109. padding-bottom: 10vw;
  1110. overflow: hidden;
  1111. @media screen and(min-width:$desktop) {
  1112. display: none;
  1113. }
  1114. #sec05-moblie-container {
  1115. position: relative;
  1116. .arrow-table {
  1117. position: fixed;
  1118. width: 25px;
  1119. right: 5px;
  1120. bottom: 300px;
  1121. z-index: 6;
  1122. @media screen and(max-width:350px) {
  1123. right: 10px;
  1124. }
  1125. }
  1126. }
  1127. h1 {
  1128. font-size: 45px;
  1129. font-weight: 900;
  1130. padding: 15px;
  1131. }
  1132. #sec05-moblie-slider {
  1133. .sec05-moblie-box {
  1134. padding: 20px;
  1135. margin: 30px;
  1136. @media screen and(max-width:400px) {
  1137. padding: 5px;
  1138. margin: 20px;
  1139. }
  1140. .card {
  1141. border: none;
  1142. }
  1143. }
  1144. }
  1145. .sec05-button {
  1146. text-align: center;
  1147. margin-top: -50px;
  1148. .mouse_scroll {
  1149. display: inline-block;
  1150. margin: 0 auto;
  1151. width: 24px;
  1152. transform: rotate(90deg);
  1153. }
  1154. .testright {
  1155. transform: rotate(180deg);
  1156. }
  1157. .m_scroll_arrows {
  1158. display: block;
  1159. width: 5px;
  1160. height: 5px;
  1161. -ms-transform: rotate(45deg); /* IE 9 */
  1162. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1163. transform: rotate(45deg);
  1164. border-right: 2px solid #000;
  1165. border-bottom: 2px solid #000;
  1166. margin: 0 0 3px 4px;
  1167. width: 16px;
  1168. height: 16px;
  1169. }
  1170. .unu {
  1171. margin-top: 1px;
  1172. }
  1173. .unu,
  1174. .doi,
  1175. .trei {
  1176. -webkit-animation: mouse-scroll 1s infinite;
  1177. -moz-animation: mouse-scroll 1s infinite;
  1178. animation: mouse-scroll 1s infinite;
  1179. }
  1180. .unu {
  1181. -webkit-animation-delay: 0.1s;
  1182. -moz-animation-delay: 0.1s;
  1183. -webkit-animation-direction: alternate;
  1184. animation-direction: alternate;
  1185. animation-delay: alternate;
  1186. }
  1187. .doi {
  1188. -webkit-animation-delay: 0.2s;
  1189. -moz-animation-delay: 0.2s;
  1190. -webkit-animation-direction: alternate;
  1191. animation-delay: 0.2s;
  1192. animation-direction: alternate;
  1193. margin-top: -6px;
  1194. }
  1195. .trei {
  1196. -webkit-animation-delay: 0.3s;
  1197. -moz-animation-delay: 0.3s;
  1198. -webkit-animation-direction: alternate;
  1199. animation-delay: 0.3s;
  1200. animation-direction: alternate;
  1201. margin-top: -6px;
  1202. }
  1203. .mouse {
  1204. height: 42px;
  1205. width: 24px;
  1206. border-radius: 14px;
  1207. transform: none;
  1208. border: 2px solid #000;
  1209. top: 170px;
  1210. }
  1211. .wheel {
  1212. height: 5px;
  1213. width: 2px;
  1214. display: block;
  1215. margin: 5px auto;
  1216. background: #000;
  1217. position: relative;
  1218. height: 4px;
  1219. width: 4px;
  1220. border: 2px solid #000;
  1221. -webkit-border-radius: 8px;
  1222. border-radius: 8px;
  1223. }
  1224. .wheel {
  1225. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1226. -moz-animation: mouse-wheel 0.6s linear infinite;
  1227. animation: mouse-wheel 0.8s linear infinite;
  1228. }
  1229. @-webkit-keyframes mouse-wheel {
  1230. 0% {
  1231. opacity: 1;
  1232. -webkit-transform: translateY(0);
  1233. -ms-transform: translateY(0);
  1234. transform: translateY(0);
  1235. }
  1236. 100% {
  1237. opacity: 0;
  1238. -webkit-transform: translateY(6px);
  1239. -ms-transform: translateY(6px);
  1240. transform: translateY(6px);
  1241. }
  1242. }
  1243. @-moz-keyframes mouse-wheel {
  1244. 0% {
  1245. top: 1px;
  1246. }
  1247. 25% {
  1248. top: 5px;
  1249. }
  1250. 50% {
  1251. top: 10px;
  1252. }
  1253. 75% {
  1254. top: 5px;
  1255. }
  1256. 100% {
  1257. top: 1px;
  1258. }
  1259. }
  1260. @-o-keyframes mouse-wheel {
  1261. 0% {
  1262. top: 1px;
  1263. }
  1264. 25% {
  1265. top: 2px;
  1266. }
  1267. 50% {
  1268. top: 3px;
  1269. }
  1270. 75% {
  1271. top: 2px;
  1272. }
  1273. 100% {
  1274. top: 1px;
  1275. }
  1276. }
  1277. @keyframes mouse-wheel {
  1278. 0% {
  1279. top: 1px;
  1280. }
  1281. 25% {
  1282. top: 5px;
  1283. }
  1284. 50% {
  1285. top: 15px;
  1286. }
  1287. 75% {
  1288. top: 5px;
  1289. }
  1290. 100% {
  1291. top: 1px;
  1292. }
  1293. }
  1294. @-webkit-keyframes mouse-scroll {
  1295. 0% {
  1296. opacity: 0;
  1297. }
  1298. 50% {
  1299. opacity: 0.5;
  1300. }
  1301. 100% {
  1302. opacity: 1;
  1303. }
  1304. }
  1305. @-moz-keyframes mouse-scroll {
  1306. 0% {
  1307. opacity: 0;
  1308. }
  1309. 50% {
  1310. opacity: 0.5;
  1311. }
  1312. 100% {
  1313. opacity: 1;
  1314. }
  1315. }
  1316. @-o-keyframes mouse-scroll {
  1317. 0% {
  1318. opacity: 0;
  1319. }
  1320. 50% {
  1321. opacity: 0.5;
  1322. }
  1323. 100% {
  1324. opacity: 1;
  1325. }
  1326. }
  1327. @keyframes mouse-scroll {
  1328. 0% {
  1329. opacity: 0;
  1330. }
  1331. 50% {
  1332. opacity: 0.5;
  1333. }
  1334. 100% {
  1335. opacity: 1;
  1336. }
  1337. }
  1338. }
  1339. }
  1340. // sec06 NFT資訊
  1341. #sec06 {
  1342. width: 100vw;
  1343. padding-top: 5vw;
  1344. padding-bottom: 10vw;
  1345. background: #525252;
  1346. @media screen and(max-width:$moblie) {
  1347. background: #313131;
  1348. }
  1349. .sec06-button {
  1350. text-align: center;
  1351. width: 75vw;
  1352. @media screen and(min-width:$desktop) {
  1353. display: none;
  1354. }
  1355. .mouse_scroll {
  1356. display: inline-block;
  1357. margin: 0 auto;
  1358. width: 24px;
  1359. transform: rotate(90deg);
  1360. }
  1361. .testright {
  1362. transform: rotate(180deg);
  1363. }
  1364. .m_scroll_arrows {
  1365. display: block;
  1366. width: 5px;
  1367. height: 5px;
  1368. -ms-transform: rotate(45deg); /* IE 9 */
  1369. -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  1370. transform: rotate(45deg);
  1371. border-right: 2px solid #fff;
  1372. border-bottom: 2px solid #fff;
  1373. margin: 0 0 3px 4px;
  1374. width: 16px;
  1375. height: 16px;
  1376. }
  1377. .unu {
  1378. margin-top: 1px;
  1379. }
  1380. .unu,
  1381. .doi,
  1382. .trei {
  1383. -webkit-animation: mouse-scroll 1s infinite;
  1384. -moz-animation: mouse-scroll 1s infinite;
  1385. animation: mouse-scroll 1s infinite;
  1386. }
  1387. .unu {
  1388. -webkit-animation-delay: 0.1s;
  1389. -moz-animation-delay: 0.1s;
  1390. -webkit-animation-direction: alternate;
  1391. animation-direction: alternate;
  1392. animation-delay: alternate;
  1393. }
  1394. .doi {
  1395. -webkit-animation-delay: 0.2s;
  1396. -moz-animation-delay: 0.2s;
  1397. -webkit-animation-direction: alternate;
  1398. animation-delay: 0.2s;
  1399. animation-direction: alternate;
  1400. margin-top: -6px;
  1401. }
  1402. .trei {
  1403. -webkit-animation-delay: 0.3s;
  1404. -moz-animation-delay: 0.3s;
  1405. -webkit-animation-direction: alternate;
  1406. animation-delay: 0.3s;
  1407. animation-direction: alternate;
  1408. margin-top: -6px;
  1409. }
  1410. .mouse {
  1411. height: 42px;
  1412. width: 24px;
  1413. border-radius: 14px;
  1414. transform: none;
  1415. border: 2px solid #fff;
  1416. top: 170px;
  1417. }
  1418. .wheel {
  1419. height: 5px;
  1420. width: 2px;
  1421. display: block;
  1422. margin: 5px auto;
  1423. background: #fff;
  1424. position: relative;
  1425. height: 4px;
  1426. width: 4px;
  1427. border: 2px solid #fff;
  1428. -webkit-border-radius: 8px;
  1429. border-radius: 8px;
  1430. }
  1431. .wheel {
  1432. -webkit-animation: mouse-wheel 0.6s linear infinite;
  1433. -moz-animation: mouse-wheel 0.6s linear infinite;
  1434. animation: mouse-wheel 0.8s linear infinite;
  1435. }
  1436. @-webkit-keyframes mouse-wheel {
  1437. 0% {
  1438. opacity: 1;
  1439. -webkit-transform: translateY(0);
  1440. -ms-transform: translateY(0);
  1441. transform: translateY(0);
  1442. }
  1443. 100% {
  1444. opacity: 0;
  1445. -webkit-transform: translateY(6px);
  1446. -ms-transform: translateY(6px);
  1447. transform: translateY(6px);
  1448. }
  1449. }
  1450. @-moz-keyframes mouse-wheel {
  1451. 0% {
  1452. top: 1px;
  1453. }
  1454. 25% {
  1455. top: 5px;
  1456. }
  1457. 50% {
  1458. top: 10px;
  1459. }
  1460. 75% {
  1461. top: 5px;
  1462. }
  1463. 100% {
  1464. top: 1px;
  1465. }
  1466. }
  1467. @-o-keyframes mouse-wheel {
  1468. 0% {
  1469. top: 1px;
  1470. }
  1471. 25% {
  1472. top: 2px;
  1473. }
  1474. 50% {
  1475. top: 3px;
  1476. }
  1477. 75% {
  1478. top: 2px;
  1479. }
  1480. 100% {
  1481. top: 1px;
  1482. }
  1483. }
  1484. @keyframes mouse-wheel {
  1485. 0% {
  1486. top: 1px;
  1487. }
  1488. 25% {
  1489. top: 5px;
  1490. }
  1491. 50% {
  1492. top: 15px;
  1493. }
  1494. 75% {
  1495. top: 5px;
  1496. }
  1497. 100% {
  1498. top: 1px;
  1499. }
  1500. }
  1501. @-webkit-keyframes mouse-scroll {
  1502. 0% {
  1503. opacity: 0;
  1504. }
  1505. 50% {
  1506. opacity: 0.5;
  1507. }
  1508. 100% {
  1509. opacity: 1;
  1510. }
  1511. }
  1512. @-moz-keyframes mouse-scroll {
  1513. 0% {
  1514. opacity: 0;
  1515. }
  1516. 50% {
  1517. opacity: 0.5;
  1518. }
  1519. 100% {
  1520. opacity: 1;
  1521. }
  1522. }
  1523. @-o-keyframes mouse-scroll {
  1524. 0% {
  1525. opacity: 0;
  1526. }
  1527. 50% {
  1528. opacity: 0.5;
  1529. }
  1530. 100% {
  1531. opacity: 1;
  1532. }
  1533. }
  1534. @keyframes mouse-scroll {
  1535. 0% {
  1536. opacity: 0;
  1537. }
  1538. 50% {
  1539. opacity: 0.5;
  1540. }
  1541. 100% {
  1542. opacity: 1;
  1543. }
  1544. }
  1545. }
  1546. h1 {
  1547. font-size: 45px;
  1548. font-weight: 900;
  1549. padding: 15px;
  1550. color: #fff;
  1551. }
  1552. hr {
  1553. width: 12vw;
  1554. height: 2px;
  1555. color: #fff;
  1556. margin: 10px;
  1557. opacity: 1 !important;
  1558. @media screen and(max-width:$moblie) {
  1559. width: 30vw;
  1560. }
  1561. }
  1562. #sec06-container {
  1563. width: 80vw;
  1564. .slick-prev:before,
  1565. .slick-next:before {
  1566. opacity: 0;
  1567. }
  1568. .slick-prev,
  1569. .slick-next {
  1570. width: 40px;
  1571. height: 40px;
  1572. content: none;
  1573. }
  1574. .slick-prev {
  1575. background-image: url(./img/sec06/sec06-arrow-2.png);
  1576. background-repeat: no-repeat;
  1577. left: -40px;
  1578. &:hover,
  1579. &:focus {
  1580. background-image: url(./img/sec06/sec06-arrow-2.png);
  1581. background-repeat: no-repeat;
  1582. }
  1583. }
  1584. .slick-next {
  1585. background-image: url(./img/sec06/sec06-arrow.png);
  1586. background-repeat: no-repeat;
  1587. right: -50px;
  1588. &:hover,
  1589. &:focus {
  1590. background-image: url(./img/sec06/sec06-arrow.png);
  1591. background-repeat: no-repeat;
  1592. }
  1593. }
  1594. .card {
  1595. margin: 10px;
  1596. height: 480px;
  1597. display: inline-block;
  1598. img {
  1599. height: 150px;
  1600. object-fit: cover;
  1601. }
  1602. border-radius: 0%;
  1603. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  1604. .card-title {
  1605. font-weight: 900;
  1606. font-size: 18px;
  1607. }
  1608. .learn-more {
  1609. width: 120px;
  1610. }
  1611. }
  1612. .learn-more {
  1613. width: 120px;
  1614. }
  1615. }
  1616. }
  1617. // sec07 table 電腦版
  1618. #sec07 {
  1619. padding-top: 5vw;
  1620. padding-bottom: 5vw;
  1621. @media screen and(max-width:$moblie) {
  1622. display: none;
  1623. }
  1624. .NFT-Collections-Sales-Volume {
  1625. width: 80vw;
  1626. margin: 0 auto;
  1627. margin-top: -120px;
  1628. margin-bottom: 50px;
  1629. @media screen and(max-width:$moblie) {
  1630. display: none;
  1631. }
  1632. h1 {
  1633. padding: 0;
  1634. margin: 0;
  1635. font-weight: normal;
  1636. color: #fff;
  1637. letter-spacing: 3px;
  1638. font-size: 50px;
  1639. }
  1640. }
  1641. .table {
  1642. text-align: center;
  1643. thead tr th {
  1644. border: 0;
  1645. }
  1646. td {
  1647. display: table-cell;
  1648. vertical-align: middle;
  1649. text-align: left;
  1650. img {
  1651. width: 50px;
  1652. }
  1653. .data-line {
  1654. width: 100px;
  1655. }
  1656. }
  1657. th {
  1658. display: table-cell;
  1659. vertical-align: middle;
  1660. text-align: left;
  1661. }
  1662. img {
  1663. padding: 5px;
  1664. }
  1665. }
  1666. .sec07-table-button {
  1667. text-align: right;
  1668. .data-button {
  1669. text-align: left;
  1670. border-radius: 25px;
  1671. width: 10vw;
  1672. padding: 5px 20px;
  1673. color: #000;
  1674. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1675. background-size: 18px 18px;
  1676. background-color: #fff;
  1677. border: 1px solid #000;
  1678. }
  1679. }
  1680. }
  1681. // sec07 table手機板 標題
  1682. #sec07-moblir-title {
  1683. background: #414141;
  1684. @media screen and(min-width:$desktop) {
  1685. display: none;
  1686. }
  1687. #sec07-container {
  1688. padding: 15px;
  1689. font-weight: 900;
  1690. color: #fff;
  1691. }
  1692. }
  1693. // sec07 table手機板
  1694. #sec07-moblie {
  1695. padding-top: 5vw;
  1696. padding-bottom: 5vw;
  1697. @media screen and(min-width:$desktop) {
  1698. display: none;
  1699. }
  1700. .table {
  1701. text-align: center;
  1702. thead tr th {
  1703. border: 0;
  1704. }
  1705. td {
  1706. display: table-cell;
  1707. vertical-align: middle;
  1708. text-align-last: left;
  1709. font-size: 14px;
  1710. img {
  1711. width: 30px;
  1712. }
  1713. .data-line {
  1714. width: 80px;
  1715. }
  1716. }
  1717. th {
  1718. display: table-cell;
  1719. vertical-align: middle;
  1720. text-align: left;
  1721. font-size: 14px;
  1722. }
  1723. img {
  1724. padding: 5px;
  1725. width: 50px;
  1726. }
  1727. }
  1728. .sec07-table-button {
  1729. text-align: right;
  1730. .data-button {
  1731. text-align: left;
  1732. border-radius: 25px;
  1733. width: 35vw;
  1734. padding: 5px 20px;
  1735. color: #000;
  1736. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  1737. background-size: 18px 18px;
  1738. background-color: #fff;
  1739. border: 1px solid #000;
  1740. }
  1741. }
  1742. }
  1743. #sec08 {
  1744. padding-bottom: 5vw;
  1745. background: linear-gradient(180deg, #414141 35%, transparent 30%, #fff 55%);
  1746. position: relative;
  1747. #sec08-container-box {
  1748. background-size: contain;
  1749. background-repeat: no-repeat;
  1750. background-blend-mode: overlay;
  1751. }
  1752. #sec08-title {
  1753. background: #414141;
  1754. padding-top: 5vw;
  1755. .col-9{
  1756. position: relative;
  1757. #OUR-PARTNER {
  1758. position: absolute;
  1759. top: -10px;
  1760. right: 0vw;
  1761. h5 {
  1762. font-size: 5em;
  1763. opacity: 0.8;
  1764. /* 文字的距離 */
  1765. /* 通常搭配內距左邊 */
  1766. text-align: center;
  1767. letter-spacing: 10px;
  1768. font-weight: 900;
  1769. padding-left: 30px;
  1770. color: #f5f5f5;
  1771. }
  1772. }
  1773. }
  1774. h1 {
  1775. padding: 10px;
  1776. color: #fff;
  1777. font-size: 45px;
  1778. font-weight: 900;
  1779. @media screen and(max-width:$moblie) {
  1780. font-weight: 900;
  1781. font-size: 32px;
  1782. }
  1783. }
  1784. hr {
  1785. width: 5vw;
  1786. height: 5px;
  1787. color: #fff;
  1788. margin: 10px auto;
  1789. opacity: 1 !important;
  1790. @media screen and(max-width:$moblie) {
  1791. width: 30vw;
  1792. }
  1793. }
  1794. }
  1795. #sec08-container {
  1796. .card {
  1797. border: none;
  1798. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1799. .adv4 {
  1800. display: flex;
  1801. align-items: center;
  1802. img {
  1803. align-items: center;
  1804. object-fit: cover;
  1805. }
  1806. }
  1807. }
  1808. .sec08-1 {
  1809. padding: 0px !important;
  1810. }
  1811. .col-3 {
  1812. img {
  1813. padding: 40px;
  1814. object-fit: cover;
  1815. @media screen and(max-width:$moblie) {
  1816. padding: 0;
  1817. }
  1818. }
  1819. }
  1820. }
  1821. }
  1822. #sec09 {
  1823. background: #9d9d9d;
  1824. padding-bottom: 5vw;
  1825. .col-9 {
  1826. position: relative;
  1827. #TRADING {
  1828. position: absolute;
  1829. right: -10px;
  1830. top: -150px;
  1831. h5 {
  1832. font-size: calc(7rem + (1.3-1.2) * ((100vw - 600px) / (1200 - 600)));
  1833. opacity: 0.8;
  1834. /* 文字的距離 */
  1835. /* 通常搭配內距左邊 */
  1836. letter-spacing: 10px;
  1837. font-weight: 900;
  1838. padding-left: 30px;
  1839. color: #414141;
  1840. }
  1841. }
  1842. }
  1843. #sec09-container-box {
  1844. background-size: contain;
  1845. background-repeat: no-repeat;
  1846. background-blend-mode: overlay;
  1847. }
  1848. #sec09-title {
  1849. padding-top: 15vw;
  1850. h1 {
  1851. color: #fff;
  1852. font-size: 45px;
  1853. font-weight: 900;
  1854. padding: 5px 10px;
  1855. @media screen and(max-width:$moblie) {
  1856. font-weight: 900;
  1857. font-size: 32px;
  1858. }
  1859. }
  1860. hr {
  1861. width: 5vw;
  1862. height: 5px;
  1863. color: #000;
  1864. margin: 10px auto;
  1865. opacity: 1 !important;
  1866. @media screen and(max-width:$moblie) {
  1867. width: 30vw;
  1868. }
  1869. }
  1870. }
  1871. #sec09-container {
  1872. .card {
  1873. padding-top: 5vw;
  1874. padding-bottom: 5vw;
  1875. border: none;
  1876. .adv4 {
  1877. display: flex;
  1878. align-items: center;
  1879. img {
  1880. align-items: center;
  1881. }
  1882. }
  1883. }
  1884. .col-3 {
  1885. margin: 10px 0;
  1886. @media screen and(max-width:$desktop) {
  1887. padding: 15px;
  1888. }
  1889. @media screen and(max-width:$moblie) {
  1890. padding: 5px;
  1891. }
  1892. img {
  1893. object-fit: cover;
  1894. @media screen and(max-width:$moblie) {
  1895. padding: 0px;
  1896. }
  1897. }
  1898. }
  1899. .sec09-1 {
  1900. padding: 70px;
  1901. @media screen and(max-width:$moblie) {
  1902. padding: 20px;
  1903. }
  1904. }
  1905. }
  1906. }
  1907. // 頁尾
  1908. #footer {
  1909. width: 100vw;
  1910. text-align: center;
  1911. line-height: 2;
  1912. background: #313131;
  1913. color: #fff;
  1914. padding-bottom: 3vw !important;
  1915. .footer-link {
  1916. padding-top: 3vw;
  1917. a {
  1918. text-decoration: none;
  1919. font-size: 20px;
  1920. padding: 10px;
  1921. color: #fff;
  1922. @media screen and(max-width:$moblie) {
  1923. font-size: 14px;
  1924. padding: 0 !important;
  1925. }
  1926. @media screen and(max-width:400px) {
  1927. font-size: 12px;
  1928. }
  1929. span {
  1930. font-size: 28px;
  1931. @media screen and(max-width:$moblie) {
  1932. font-size: 16px;
  1933. }
  1934. @media screen and(max-width:350px) {
  1935. font-size: 14px;
  1936. }
  1937. }
  1938. }
  1939. }
  1940. .text {
  1941. padding-top: 3vw;
  1942. a {
  1943. text-decoration: none;
  1944. color: #fff;
  1945. }
  1946. h2 {
  1947. font-size: 20px;
  1948. margin: 10px;
  1949. letter-spacing: 1px;
  1950. display: inline;
  1951. @media screen and(max-width:$moblie) {
  1952. display: block;
  1953. font-size: 16px;
  1954. margin: 8px;
  1955. }
  1956. }
  1957. p {
  1958. margin: 0 !important;
  1959. }
  1960. }
  1961. }