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