index.html 375 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <!-- Global site tag (gtag.js) - Google Analytics -->
  5. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-201820994-1"></script>
  6. <meta charset="UTF-8">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <meta name="copyright" content="2021 © NFTBoard │ All Rights Reserved.">
  10. <meta name="creation-date" content="2021-07-09 12:00:04 GTM+8">
  11. <meta name="description" content="全球NFT指標告示板">
  12. <meta name="distribution" content="Taiwan">
  13. <meta name="keywords" content="">
  14. <meta name="revisit-after" content="1 days">
  15. <meta name="robots" content="all">
  16. <meta name="format-detection" content="telephone=no">
  17. <meta name="author" content="Choozmo">
  18. <meta property="og:image" content="https://i.imgur.com/X6nYWji.jpeg" />
  19. <meta property="og:description" content="全球NFT指標告示板" />
  20. <meta property="og:site_name" content="NFTBoard" />
  21. <meta property="og:title" content="NFTBoard-官方網站" />
  22. <meta property="og:type" content="website" />
  23. <meta property="og:locale" content="zh_TW">
  24. <title>NFTBoard</title>
  25. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
  26. integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
  27. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
  28. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
  29. <link rel="stylesheet" href="./style.css">
  30. <link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
  31. <script>
  32. window.dataLayer = window.dataLayer || [];
  33. function gtag() { dataLayer.push(arguments); }
  34. gtag('js', new Date());
  35. gtag('config', 'UA-201820994-1');
  36. </script>
  37. <!-- Facebook Pixel Code -->
  38. <script>
  39. !function (f, b, e, v, n, t, s) {
  40. if (f.fbq) return; n = f.fbq = function () {
  41. n.callMethod ?
  42. n.callMethod.apply(n, arguments) : n.queue.push(arguments)
  43. };
  44. if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
  45. n.queue = []; t = b.createElement(e); t.async = !0;
  46. t.src = v; s = b.getElementsByTagName(e)[0];
  47. s.parentNode.insertBefore(t, s)
  48. }(window, document, 'script',
  49. 'https://connect.facebook.net/en_US/fbevents.js');
  50. fbq('init', '100259488965753');
  51. fbq('track', 'PageView');
  52. </script>
  53. <noscript><img height="1" width="1" style="display:none"
  54. src="https://www.facebook.com/tr?id=100259488965753&ev=PageView&noscript=1" /></noscript>
  55. <!-- End Facebook Pixel Code -->
  56. </head>
  57. <body id="top" class="container-fluid w-100" style="padding: 0; margin: 0;">
  58. <!-- 主選單 -->
  59. <section id="Navigation" class="container-fluid px-0 mx-0">
  60. <div id="nav" class="row" style="padding:0;margin:0">
  61. <div id="logo" class=" col-md-2 col-lg-2">
  62. <a href=""> <img src="./img/LOGO.png" alt=""></a>
  63. </div>
  64. <div id="link" class="col-md-10 col-lg-8">
  65. <a data-gt-target="#sec01 " data-gt-duration="500" data-gt-offset="">相關新聞</a>
  66. <a data-gt-target="#sec02" data-gt-duration="800" data-gt-offset="60">TOP NFT ARTIST</a>
  67. <a data-gt-target="#sec04" data-gt-duration="500" data-gt-offset="60">洞察報告</a>
  68. <a data-gt-target="#sec05" data-gt-duration="500" data-gt-offset="60">熱門作品</a>
  69. <a data-gt-target="#sec06" data-gt-duration="500" data-gt-offset="60">NFT資訊</a>
  70. <a data-gt-target="#sec06" data-gt-duration="500" data-gt-offset="-700">NFT趨勢數據</a>
  71. <a target="_blank"
  72. href="./index2.html">聯絡我們</a>
  73. </div>
  74. <img id="menu-btn1" src="./img/menu.png" alt="">
  75. <div id="socail-link" class="col-md-10 col-lg-2 mx-0">
  76. <a target="_blank" href="https://www.facebook.com/nftboard"><img src="./img/facebook (2).png"
  77. alt=""></a>
  78. <a target="_blank" href="https://www.instagram.com/nftboard.info/"><img src="./img/instagram.png"
  79. alt=""></a>
  80. </div>
  81. </div>
  82. </section>
  83. <!-- 手機板行動選單 -->
  84. <div class="menu-box" class="container-fluid" style="padding:0;margin:0 ">
  85. <div class="menu-box2">
  86. <div style="text-align: right;">
  87. <img class="close" src="./img/close.png" alt="">
  88. </div>
  89. <a class="link" data-gt-target="#sec01" data-gt-duration="500" data-gt-offset="0"
  90. style="padding-top: 3vw;">相關新聞</a>
  91. <hr>
  92. <a class="link" data-gt-target="#sec02-moblie" data-gt-duration="800" data-gt-offset="60">TOP NFT ARTIST</a>
  93. <hr>
  94. <a class="link" data-gt-target="#sec04-moblie" data-gt-duration="500" data-gt-offset="60">洞察報告</a>
  95. <hr>
  96. <a class="link" data-gt-target="#sec05-moblie" data-gt-duration="500" data-gt-offset="60">熱門作品</a>
  97. <hr>
  98. <a class="link" data-gt-target="#sec06" data-gt-duration="500" data-gt-offset="60">NFT資訊</a>
  99. <hr>
  100. <a class="link" data-gt-target="#sec07-moblir-title" data-gt-duration="500" data-gt-offset="80">NFT趨勢數據</a>
  101. <hr>
  102. <a class="link" target="_blank"
  103. href="./index2.html">聯絡我們</a>
  104. <hr>
  105. <a target="_blank" href="https://www.facebook.com/nftboard">粉絲專頁</a>
  106. <hr>
  107. <a class="link" data-gt-target="#sec08" data-gt-duration="500" data-gt-offset="">合作夥伴</a>
  108. </div>
  109. </div>
  110. <!-- 主視覺 -->
  111. <section id="banner" class="container-fluid mx-0 px-0">
  112. <div style="margin-top:130px;display: none;" class="marquee">
  113. <div>
  114. <span>You spin me right round, baby. Like a record, baby.</span>
  115. <span>You spin me right round, baby. Like a record, baby.</span>
  116. </div>
  117. </div>
  118. <div id="banner-container">
  119. <div class="youtube-slider">
  120. <!-- <div class="youtube ">
  121. <div class="row">
  122. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  123. <a target="_blank" href="https://www.abmedia.io/dynamic-nft-to-change-via-election-result">
  124. <h1 class="youtube-text-title1">依照選舉結果變化的</h1>
  125. </a>
  126. <a target="_blank" href="https://www.abmedia.io/dynamic-nft-to-change-via-election-result">
  127. <h1 class="youtube-text-title2">數位收藏品(NFT)?</h1>
  128. </a>
  129. <hr>
  130. <p>去年10月美國邁阿密藝術收藏家羅德里格斯福瑞爾(Pablo Rodriguez-Fraile)以近 6,7000 USD(約新台幣 187萬元)代價,買下數位藝術家
  131. Beeple的一件影片作品。</p>
  132. <div class="youtube-text-hr"
  133. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden">
  134. </div>
  135. <p>兩幅畫正在美國總統拜登與川普在選舉前進行拍賣,川普的選舉結果決定了畫家這幅畫的最終呈現。</p>
  136. </div>
  137. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  138. <style>
  139. .embed-container {
  140. position: relative;
  141. padding-bottom: 56.25%;
  142. height: 0;
  143. overflow: hidden;
  144. max-width: 100%;
  145. }
  146. .embed-container iframe,
  147. .embed-container object,
  148. .embed-container embed {
  149. position: absolute;
  150. top: 0;
  151. left: 0;
  152. width: 100%;
  153. height: 100%;
  154. }
  155. </style>
  156. <div class='embed-container'><iframe src='https://www.youtube.com/embed//qj0_2TgJLtY'
  157. frameborder='0' allowfullscreen></iframe></div>
  158. </div>
  159. </div>
  160. </div>
  161. <div id="youtube2" class="youtube">
  162. <div class="row">
  163. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  164. <a target="_blank" href=""> <h1 class="youtube-text-title1">拍賣後被立即焚燒的畫”Morons”</h1></a>
  165. <a target="_blank" href=""><h1 class="youtube-text-title2">NFT區塊鏈藝術想幹嘛?</h1></a>
  166. <h1>竟用 9.5 萬美元</h1>
  167. <h1 class="youtube-text-title2">名畫燒掉再4 倍價賣出數位版</h1>
  168. <hr>
  169. <p>千辛萬苦高價買到一副畫,一般人會怎麼做?
  170. 當然是珍藏。
  171. 空氣、濕度、光線、相框等等都有大講究,說是把這幅畫供起來也不為過。
  172. 但有的人偏偏反其道而行之。
  173. </p>
  174. <div class="youtube-text-hr"
  175. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden">
  176. </div>
  177. <p>和一般的行為藝術不同,它對人類文明傳統傳承方式的挑戰非比尋常,很有可能在人類史上成為標誌性事件之一。</p>
  178. </div>
  179. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  180. <style>
  181. .embed-container {
  182. position: relative;
  183. padding-bottom: 56.25%;
  184. height: 0;
  185. overflow: hidden;
  186. max-width: 100%;
  187. }
  188. .embed-container iframe,
  189. .embed-container object,
  190. .embed-container embed {
  191. position: absolute;
  192. top: 0;
  193. left: 0;
  194. width: 100%;
  195. height: 100%;
  196. }
  197. </style>
  198. <div class='embed-container'><iframe src='https://www.youtube.com/embed//C4wm-p_VFh0'
  199. frameborder='0' allowfullscreen></iframe></div>
  200. </div>
  201. </div>
  202. </div>
  203. <div id="youtube3" class="youtube">
  204. <div class="row">
  205. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  206. <a target="_blank" href=""> <h1 class="youtube-text-title1">Tim Berners-Lee 的www網源代碼 NFT </h1></a>
  207. <a target="_blank" href=""><h1 class="youtube-text-title2">以 540 萬美元售出</h1></a>
  208. <hr>
  209. <h2 style="font-size: 25px;" class="youtube-text-title2">自 1989 年 Berners-Lee 發明網絡以來,加密資產代表各種數字項目的所有權</h2>
  210. <p>由英國科學家 Berners-Lee 於 2021 年創建的,代表了他從 1989 年發明萬維網以來對各種數字物品的所有權。
  211. </p>
  212. <div class="youtube-text-hr"
  213. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden">
  214. </div>
  215. <p>此次出售有效地包括基於區塊鏈的文件所有權記錄,其中包含萬維網的原始源代碼。最終價格為 5,434,500 美元,一半的競拍者是蘇富比的新人。</p>
  216. </div>
  217. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  218. <p >購買中包括代表 1990 年至 1991 年編寫的約 9,555 行代碼的 NFT、代碼的 30 分鐘動畫可視化、代碼的數字海報以及 Berners-Lee 於 2021 年 6 月撰寫的數字信函,表明其所有權。</p>
  219. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//qTwWnZ0UUHw' frameborder='0' allowfullscreen></iframe></div>
  220. <p class="bg-dark mt-3">這封信的開頭是:“因為人們似乎喜歡親筆簽名的書籍,現在我們有了 NFT 技術,我認為製作第一個網絡瀏覽器原始代碼的親筆簽名副本會很有趣。”</p>
  221. </div>
  222. </div>
  223. </div>
  224. <div id="youtube4" class="youtube">
  225. <div class="row">
  226. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  227. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123172233341145"> <h1 class="youtube-text-title1">淘寶造物節設計師黃河山協同NEAR發布出售“房地產”NFT~</h1></a>
  228. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123172233341145"><h1 class="youtube-text-title2"></h1></a>
  229. <hr>
  230. <p>其中一直為許多潮流玩家所熱捧的NFT數字藝術品也將首次亮相淘寶造物節。畢業於清華美院、獨具“社會主義賽博朋克”氣質的青年設計師黃河山將攜帶其NFT作品和大家見面。
  231. </p>
  232. <p>NEAR亞太區負責人Amos表示,“NFT不僅僅是數字藝術品,它作為一種技術,可以為各行各業賦能。NEAR的目標是成為連接互聯網和區塊鏈之間的的橋樑,讓區塊鏈這項技術人人可用。</p>
  233. </div>
  234. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  235. <h2 style="font-size: 25px;" class="youtube-text-title2 mb-3">2021年7月17日~25日,一年一度的淘寶造物節將在上海國家會展中心震撼上演。</h2>
  236. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//hSO68EnYsgM' frameborder='0' allowfullscreen></iframe></div>
  237. <p class="bg-dark mt-5"></p>
  238. </div>
  239. </div>
  240. </div>
  241. <div id="youtube5" class="youtube">
  242. <div class="row">
  243. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  244. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123175760007459"> <h1 class="youtube-text-title1">孫宇晨:藝術市場的未來屬於NFT先鋒藝術家</h1></a>
  245. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123175760007459"><h1 class="youtube-text-title2"></h1></a>
  246. <hr>
  247. <div class="youtube-text-hr" style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  248. <p>在活動首個環節的圓桌訪談時孫宇晨表示,藝術市場的未來屬於NFT先鋒藝術家,當前區塊鏈實現了技術與藝術之間前所未有的聯繫,以NFT為主要代表,正在重塑藝術世界。
  249. </p>
  250. <p class="bg-dark mb-3">隨后孫宇晨回復到,“我很高興參加專注於NFT的' Art + T ech'峰會。我期待著NFT以一流的區塊鏈底層技術為後盾,來實現對當今及以後藝術世界產生影響的全面願景。 </p>
  251. </div>
  252. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  253. <h2 style="font-size: 25px;" class="youtube-text-title2 mb-3">7月15日,波場TRON創始人兼BitTorrent CEO孫宇晨受邀出席了佳士得第四屆“Art + Tech”峰會</h2>
  254. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//1UapzhAVBd8' frameborder='0' allowfullscreen></iframe></div>
  255. </div>
  256. </div>
  257. </div> -->
  258. <!-- <div id="youtube6" class="youtube">
  259. <div class="row mx-0 px-0">
  260. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  261. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123175760007459">
  262. <h1 class="youtube-text-title1">東京奧運紀念別針胸章 NFT Olympic Pins Announcement</h1>
  263. </a>
  264. <a target="_blank" href="https://www.facebook.com/nftboard/posts/123175760007459">
  265. <h1 class="youtube-text-title2"></h1>
  266. </a>
  267. <hr>
  268. <h2 style="font-size: 25px;" class="youtube-text-title2">國際奧委會今年與nWayPlay 合作推出一系列 紀念 NFT 胸章
  269. </h2>
  270. <div class="youtube-text-hr"
  271. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  272. <p>此次發行的有1896年的雅典奧運、1924年的巴黎奧運、1924 年的霞慕尼冬奧(首屆冬季奧運)、1932 年的普萊西德湖冬奧(首屆在美國舉行的冬奧)、1964
  273. 年的東京奧運(首度在亞洲舉行的奧運)、1972 年的慕尼黑奧運(首次有官方吉祥物的奧運)。
  274. </p>
  275. </div>
  276. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  277. <style>
  278. .embed-container {
  279. position: relative;
  280. padding-bottom: 56.25%;
  281. height: 0;
  282. overflow: hidden;
  283. max-width: 100%;
  284. }
  285. .embed-container iframe,
  286. .embed-container object,
  287. .embed-container embed {
  288. position: absolute;
  289. top: 0;
  290. left: 0;
  291. width: 100%;
  292. height: 100%;
  293. }
  294. </style>
  295. <div class='embed-container'><iframe
  296. src='https://www.youtube.com/embed//p4ma3rmPY2E?autoplay=1&mute=1' frameborder='0'
  297. allowfullscreen></iframe></div>
  298. </div>
  299. </div>
  300. </div> -->
  301. <!-- <div id="youtube7" class="youtube">
  302. <div class="row mx-0 px-0">
  303. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  304. <a target="_blank" href="./binance-bit-has-memories.html">
  305. <h1 class="youtube-text-title1">幣安與Neal Digital Gallery藝廊共同推出「BIT HAS MEMORIES(比特的記憶)」線上藝術展</h1>
  306. </a>
  307. <div class="youtube-text-hr my-3"
  308. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  309. <p>本次特展時間從08/06 11:00 (UTC) 到08/13 11:00 (UTC),歡迎大家把握機會來享受一下BINANCE NFT與Neal Digital Gallery聯手為大家準備的「BIT HAS MEMORIES(比特的記憶)」線上特展。 </p>
  310. <a target="_blank" href="./binance-bit-has-memories.html"><button
  311. class="learn-more">LearnMore</button></a>
  312. </div>
  313. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  314. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//ReVwhlJkwHI?autoplay=1&mute=1' frameborder='0' allowfullscreen></iframe></div>
  315. </div>
  316. </div>
  317. </div> -->
  318. <!-- <div id="youtube8" class="youtube">
  319. <div class="row mx-0 px-0">
  320. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  321. <a target="_blank" href="./messi-nft.html">
  322. <h1 class="youtube-text-title1">NFT運動│足球巨星梅西Messi 的NFT來了,8/20迎接『The Messiverse』梅西宇宙</h1>
  323. </a>
  324. <div class="youtube-text-hr my-3"
  325. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  326. <p>挾著七月美洲杯冠軍封王的氣勢,世界足球先生Lionel Messi 於8/4隆重宣布與澳大利亞藝術家 Bosslogic合作,於Eternity NFT平台發行名為The Messiverse 的4件NFT 藝術作品
  327. </p>
  328. <a target="_blank" href="./messi-nft.html"><button
  329. class="learn-more">LearnMore</button></a>
  330. </div>
  331. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  332. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//0uf3MdK32-s?autoplay=1&mute=1' frameborder='0' allowfullscreen></iframe></div>
  333. </div>
  334. </div>
  335. </div> -->
  336. <!-- <div id="youtube9" class="youtube">
  337. <div class="row mx-0 px-0">
  338. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  339. <a target="_blank" href="./akaswapwhyixd.html">
  340. <h1 class="youtube-text-title1">NFT互動式觀展體驗,何理互動設計與akaSwap共同策劃,NFT視覺藝術展,「reSync:
  341. Love」疫情下以「愛」連結彼此。</h1>
  342. </a>
  343. <div class="youtube-text-hr my-3"
  344. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  345. <p>以「reSync: Love」疫情下以「愛」連結彼此為主題,三大概念故事展開,參觀者將化身「玩家」,穿梭在文本構成的世界觀中,獲得有別於一般數位展示的觀展體驗。</p>
  346. <a target="_blank" href="./akaswapwhyixd.html"><button
  347. class="learn-more">LearnMore</button></a>
  348. </div>
  349. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  350. <style>
  351. .embed-container {
  352. position: relative;
  353. padding-bottom: 56.25%;
  354. height: 0;
  355. overflow: hidden;
  356. max-width: 100%;
  357. }
  358. .embed-container iframe,
  359. .embed-container object,
  360. .embed-container embed {
  361. position: absolute;
  362. top: 0;
  363. left: 0;
  364. width: 100%;
  365. height: 100%;
  366. }
  367. </style>
  368. <div class='embed-container'><iframe
  369. src='https://www.youtube.com/embed//FCO_ra633jc?autoplay=1&mute=1' frameborder='0'
  370. allowfullscreen></iframe></div>
  371. </div>
  372. </div> -->
  373. <!-- <div id="youtube10" class="youtube">
  374. <div class="row mx-0 px-0">
  375. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  376. <a target="_blank" href="./akaswapwhyixd.html">
  377. <h1 class="youtube-text-title1">NFT時尚 I Dolce & Gabbana全球知名的義大利奢侈時尚品牌Dolce & Gabbana,宣布將於NFT交易平台 UNXD 上進行時裝NFT拍賣。</h1>
  378. </a>
  379. <div class="youtube-text-hr my-3"
  380. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  381. <p style="font-size:16px;">首個NFT系列 #CollezioneGenesi 由兩位創辦人Domenico Dolce 和 Stefano Gabbana 親自設計, 共9個作品,每個作品都將是唯一,日後永不再發行,拍賣截止日期在9/28-9/30之間,接受ETH及法幣支付。</p>
  382. <a target="_blank" href="https://unxd.com/?fbclid=IwAR1Y0DljtC-L-ug3mD-tVzoLuVIULDh--toxgjY48dh0ffgtZc66sLBBANI"><button
  383. class="learn-more">拍賣平台</button></a>
  384. </div>
  385. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  386. <style>
  387. .embed-container {
  388. position: relative;
  389. padding-bottom: 56.25%;
  390. height: 0;
  391. overflow: hidden;
  392. max-width: 100%;
  393. }
  394. .embed-container iframe,
  395. .embed-container object,
  396. .embed-container embed {
  397. position: absolute;
  398. top: 0;
  399. left: 0;
  400. width: 100%;
  401. height: 100%;
  402. }
  403. </style>
  404. <div class='embed-container'><iframe
  405. src='https://www.youtube.com/embed/sdgwj0aHmfk?autoplay=1&mute=1' frameborder='0'
  406. allowfullscreen></iframe></div>
  407. </div>
  408. </div>
  409. </div> -->
  410. <!-- <div id="youtube10" class="youtube">
  411. <div class="row mx-0 px-0">
  412. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 ">
  413. <a target="_blank" href="./akaswapwhyixd.html">
  414. <h1 class="youtube-text-title1">帶著Fansi NFT,一起扭動為偶像激動吶喊,4步驟暢玩美秀集團360度VC全息演唱會</h1>
  415. </a>
  416. <div class="youtube-text-hr my-3"
  417. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  418. <p style="font-size:16px;">NFT結合VC、XR、AI技術,不只收藏,還能看演唱會
  419. NFT應用除了進場玩遊戲,現在又馬上多一個全新體驗--VC全息演唱會。這次Fansi NFT平台與BEATDAY合作,讓粉絲能帶著自己買好的NFT收藏組(虛擬音樂公仔、門票與道具),進場參加美秀集團首波全息演唱會,9/13 0:00 開賣。</p>
  420. <a target="_blank" href="./fansi-beatday.html"><button
  421. class="learn-more">LearnMore</button></a>
  422. </div>
  423. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  424. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//oXvcvv80k4c?autoplay=1&mute=1' frameborder='0' allowfullscreen></iframe></div>
  425. </div>
  426. </div>
  427. </div> -->
  428. <!-- <div id="youtube10" class="youtube">
  429. <div class="row mx-0 px-0">
  430. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 d-flex align-items-center">
  431. <div>
  432. <a target="_blank" href="./akaswapwhyixd.html">
  433. <h1 class="youtube-text-title1">Market Place 推出音樂NFT新平台</h1>
  434. </a>
  435. <div class="youtube-text-hr my-3"
  436. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  437. <p style="font-size:16px;">全球知名NFT藝術平台 Market Place,9月發表將聚焦於音樂與數位藝術結合的NFT作品,並鄭重宣布與Sony Music Entertainment (SME)成為夥伴關係,首波主打三件重量級音樂偶像,包含夏奇拉( Shakira),湯姆·莫雷洛(Tom Morello)以及饒舌歌手提潘(T-Pain)的音樂NFT作品。</p>
  438. <a target="_blank" href="./marketplace.html"><button
  439. class="learn-more">LearnMore</button></a>
  440. </div>
  441. </div>
  442. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  443. <img class="img-fluid" src="./img/zenith-shakira-nft.gif" alt="">
  444. </div>
  445. </div>
  446. </div> -->
  447. <!-- <div id="youtube10" class="youtube">
  448. <div class="row mx-0 px-0">
  449. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 d-flex align-items-center">
  450. <div>
  451. <a target="_blank" href="./akaswapwhyixd.html">
  452. <h1 class="youtube-text-title1">NFT I 機甲宇宙MekaVerse 8,888 unique Mekas </h1>
  453. </a>
  454. <div class="youtube-text-hr my-3"
  455. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  456. <p style="font-size:16px;">MekaVerse 的機甲系列,由Mattey 和 Matt.B 所設計。他們是法國的3D藝術家也是導演,</p>
  457. <p style="font-size:16px;">在推出meka系列前,也設計了許多NFT3D藝術品,在SuperRare、Foudation等知名NFT平台銷售。
  458. Mattey 的Butterfly Eyes NFT作品,賣出20ETH(大約7萬美金) 的好成績,他們擅長以豐富的暖色系配色,吸引許多粉絲觀注。</p>
  459. <a target="_blank" href="https://www.facebook.com/nftboard/posts/158843179774050"><button
  460. class="learn-more mt-3">LearnMore</button></a>
  461. </div>
  462. </div>
  463. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  464. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//u8pmfWYcUEU?autoplay=1&mute=1' frameborder='0' allowfullscreen></iframe></div>
  465. </div>
  466. </div>
  467. </div> -->
  468. <div id="youtube10" class="youtube">
  469. <div class="row mx-0 px-0">
  470. <div id="youtube-text" class="col-12 order-2 col-lg-5 order-lg-1 d-flex align-items-center">
  471. <div>
  472. <a target="_blank" href="./akaswapwhyixd.html">
  473. <h1 class="youtube-text-title1">What’Next 公民森林永續行動,NFT加密藝術多元應用</h1>
  474. </a>
  475. <div class="youtube-text-hr my-3"
  476. style="border-top:1px dashed #cccccc;height: 1px;overflow:hidden"></div>
  477. <p style="font-size:16px;width: 360px;">由「GPE好事交易所」發起的「全球第一座由公民群募,為地球種下10,000顆樹」的公民森林行動,自10月1日開幕以來獲得各界熱烈響應</p>
  478. <p style="font-size:16px;width: 360px;">期望透過一連串多元活動打造新型態「長期預購訂閱式平台」方式,以記錄式、量化、視覺化及互動式方式幫助 NPO 及弱勢對外傳遞永續「價值」</p>
  479. <p style="font-size:16px;width: 370px;">提升永續行動的參與感,促進永續專案長期且持續性的推廣,進而達到減少碳排與實踐SDGs的目標。</p>
  480. <a target="_blank" href="https://nftboard.today/whatnext-citizen-forest/"><button
  481. class="learn-more mt-3">LearnMore</button></a>
  482. </div>
  483. </div>
  484. <div class="col-12 order-1 col-lg-7 order-lg-2 ">
  485. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//5i-CzjB9IOw?autoplay=1&mute=1' frameborder='0' allowfullscreen></iframe></div>
  486. </div>
  487. </div>
  488. </div>
  489. </div>
  490. <!-- 電腦版按鈕 -->
  491. <form class="contact-form-destop">
  492. <h1>歡迎訂閱掌握最新活動資訊</h1>
  493. <input type="email" name="email" id="email" placeholder="請在此輸入email" required><input class="btn"
  494. type="submit" value="立即訂閱">
  495. </form>
  496. <!-- 手機板按鈕 -->
  497. <form class="contact-form-mobile">
  498. <h1>歡迎訂閱掌握最新活動資訊</h1>
  499. <div style="text-align: center;">
  500. <input type="email" name="email" id="email-moblie" placeholder="請在此輸入email" required><input
  501. id="email-arrow" value="" type="submit">
  502. </div>
  503. </form>
  504. </div>
  505. </section>
  506. <!-- sec01 news -->
  507. <section id="sec01" class="container-fluid" style="padding:5vw 0;">
  508. <a style="text-decoration: none;" target="_blank" href="./index2.html">
  509. <div class="NEWS">
  510. <h1>NEWS</h1>
  511. </div>
  512. </a>
  513. <div id="sec01-container" class="container-fluid mx-0 px-0">
  514. <div id="sec01-container-card" class="row"></div>
  515. </div>
  516. </section>
  517. <!-- 廣告區塊 -->
  518. <section class="adv01 py-5 bg-light my-5">
  519. <div class="adv01-1 container-fluid">
  520. <a target="_blank" href="https://www.mustard.org.tw/desktop.php?tid=547&id=164">
  521. <img class="img-fluid" src="./img/adv/adv1.webp" alt="">
  522. </a>
  523. </div>
  524. </section>
  525. <!-- <section id="video" class="container-fluid" style="padding:1vw 0;">
  526. <video type="video/mp4" src="./img/video1.mp4" controls></video>
  527. </section> -->
  528. <!-- 影片區塊 -->
  529. <div class="wrap container-fluid px-0 mx-0" style="padding:1vw 0;">
  530. <div class="adv-banner">
  531. <video autoplay muted loop playsinline>
  532. <source src="./img/video1_x264.mp4" type="video/mp4">
  533. </video>
  534. </div>
  535. </div>
  536. <!-- 作品集活動區塊 -->
  537. <section id="sec-works" class="container-fluid pb-5">
  538. <div class="sec-work-title">
  539. <h1 class="secn-title">NFTBoard Portfolio</h1>
  540. </div>
  541. <div id="sec-work-container" class="container-fluid px-0 mx-0">
  542. <div id="sec-work-box" class="row"></div>
  543. </div>
  544. </section>
  545. <!-- 廣告區塊 -->
  546. <section class="adv01 py-5 bg-light my-5">
  547. <div class="adv01-1 container-fluid">
  548. <a target="_blank" href="https://www.mustard.org.tw/desktop.php?tid=547&id=164"><img class="img-fluid"
  549. src="./img/adv/adv2.jpg" alt=""></a>
  550. </div>
  551. </section>
  552. <!-- sec02-Top-box- 電腦版-->
  553. <section id="sec02">
  554. <div id="sec02-container" class="container-fluid">
  555. <div id="sec02-top-box" class="row">
  556. <div class="col-lg-3">
  557. <h1>TOP NFT</h1>
  558. </div>
  559. <div id="sec02-content" class="col-lg-9">
  560. <div class="row">
  561. <div class="sec02-box1 col-lg-2">
  562. <a target="_blank" href="https://www.beeple-crap.com/"><img src="./img/sec02/top1webp.webp"
  563. alt=""></a>
  564. <div class="sec02-top-text"><span>1</span>Beeple</div>
  565. <div>(邁克•溫克爾曼)</div>
  566. </div>
  567. <div class="sec02-box1 col-lg-2">
  568. <a target="_blank" href="https://www.trevorjonesart.com/"><img
  569. src="./img/sec02/top2webp.webp" alt=""></a>
  570. <div class="sec02-top-text"><span>2</span>Trevorjonesart</div>
  571. <div>(特雷弗瓊斯)</div>
  572. </div>
  573. <div class="sec02-box1 col-lg-2">
  574. <a target="_blank" href="https://fewocious.com/"><img src="./img/sec02/sec02-top3webp.webp"
  575. alt=""></a>
  576. <div class="sec02-top-text"><span>3</span>FEWOCIOUS</div>
  577. <div>(霏沃休斯)</div>
  578. </div>
  579. <div class="sec02-box1 col-lg-2">
  580. <a target="_blank" href="https://niftygateway.com/collections/pak"><img
  581. src="./img/sec02/top4webp.webp" alt=""></a>
  582. <div class="sec02-top-text"><span>4</span>muratpak</div>
  583. <div>(派克)</div>
  584. </div>
  585. <div class="sec02-box1 col-lg-2">
  586. <a target="_blank" href="https://www.maddogjones.com/"><img src="./img/sec02/top5webp.webp"
  587. alt=""></a>
  588. <div class="sec02-top-text"><span>5</span>Maddogjones</div>
  589. <div>(麥道瓊斯)</div>
  590. </div>
  591. </div>
  592. </div>
  593. </div>
  594. </div>
  595. </section>
  596. <!-- sec02-Top-box- 手機板-->
  597. <section id="sec02-moblie">
  598. <div id="sec02-container" class="container-fluid">
  599. <div class="sec02-top1-box">
  600. <div>
  601. <h1>TOP NFT</h1>
  602. </div>
  603. </div>
  604. <div id="sec02-content" class="col-12">
  605. <div id="sec02-top-box" class="row">
  606. <div class="sec02-box1 col-4 order-2" style="padding: 0;">
  607. <a target="_blank" href="https://www.beeple-crap.com/"><img id="top1"
  608. src="./img/sec02/top1webp.webp" alt=""></a>
  609. <div class="sec02-top-text"><span>1</span>Beeple</div>
  610. <div class="sec02-top-text">(邁克溫克爾曼)</div>
  611. </div>
  612. <div class="sec02-box1 col-4 order-1 " style=" padding-left: 0;">
  613. <a target="_blank" href="https://www.trevorjonesart.com/"><img src="./img/sec02/top2webp.webp"
  614. alt=""></a>
  615. <div class="sec02-top-text"><span>2</span>Trevorjonesart</div>
  616. <div class="sec02-top-text" style="display: block;">(特雷弗瓊斯)</div>
  617. </div>
  618. <div class="sec02-box1 col-4 order-3 " style="padding: 0;">
  619. <a target="_blank" href="https://fewocious.com/"><img src="./img/sec02/sec02-top3webp.webp"
  620. alt=""></a>
  621. <div class="sec02-top-text"><span>3</span>FEWOCIOUS</div>
  622. <div class="sec02-top-text" style="display: block;">(霏沃休斯)</div>
  623. </div>
  624. </div>
  625. </div>
  626. </div>
  627. </div>
  628. </section>
  629. <!-- 排名區塊-電腦版 -->
  630. <section id="sec03">
  631. <div id="sec03-table" class="container-fluid">
  632. <div class="row">
  633. <div class="col-md-6 col-lg-6">
  634. <h1 class="sec03-table-title">COMMUNITY PICKS</h1>
  635. </div>
  636. <div class="col-md-6 col-lg-6">
  637. <h1 class="sec03-table-title" style="color:#9B9B9B;"> PROMOTED CREATIONS</h1>
  638. </div>
  639. </div>
  640. <div class="row" style="box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);">
  641. <div class="col-lg-6">
  642. <table class="table">
  643. <tbody>
  644. <tr>
  645. <th scope="row">1</th>
  646. <td>
  647. <a target="_blank" href="https://www.instagram.com/p/CO0otBGjnFm/"><img
  648. src="./img/sec03/sec03top1.gif" alt=""></a>
  649. <div class="sec03-table-text" style="display: inline-block ;">
  650. <div>
  651. <a target="_blank" href="https://www.instagram.com/iammaskarade/">
  652. <h1>iammaskarade</h1>
  653. </a>
  654. </div>
  655. <div>
  656. <a target="_blank" href="https://www.instagram.com/p/CO0otBGjnFm/">
  657. <p>Backdated NFT/Ethereum Stamp</p>
  658. </a>
  659. </div>
  660. <p style="opacity: 0;">Backdated NFT/Ethereum Stamp</p>
  661. </div>
  662. </td>
  663. </tr>
  664. <tr>
  665. <th scope="row">2</th>
  666. <td>
  667. <a target="_blank"
  668. href="https://opensea.io/assets/0xd92e44ac213b9ebda0178e1523cc0ce177b7fa96/100010115"><img
  669. src="./img/sec03/top2webp.webp" alt=""></a>
  670. <div class="sec03-table-text" style="display: inline-block ;">
  671. <div>
  672. <a target="https://opensea.io/beeple" href="https://opensea.io/beeple">
  673. <h1>beeple</h1>
  674. </a>
  675. </div>
  676. <div>
  677. <a target="_blank"
  678. href="https://opensea.io/assets/0xd92e44ac213b9ebda0178e1523cc0ce177b7fa96/100010115">
  679. <p>The Eternal Cloudsitter</p>
  680. <p>BULL RUN #115/271</p>
  681. </a>
  682. </div>
  683. </div>
  684. </td>
  685. </tr>
  686. <tr>
  687. <th scope="row">3</th>
  688. <td>
  689. <a target="_blank"
  690. href="https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/17695285328414013321162775223300201078905627004348366341411776174679266426881"><img
  691. src="./img/sec03/top4webp.webp" alt=""></a>
  692. <div class="sec03-table-text" style="display: inline-block ;">
  693. <div>
  694. <a target="_blank" href="https://opensea.io/SasGlas">
  695. <h1>SasGlas</h1>
  696. </a>
  697. </div>
  698. <div>
  699. <a target="_blank"
  700. href="https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/17695285328414013321162775223300201078905627004348366341411776174679266426881">
  701. <p>The Eternal Cloudsitter</p>
  702. </a>
  703. </div>
  704. <p style="opacity: 0;">Backdated NFT/Ethereum Stamp</p>
  705. </div>
  706. </td>
  707. </tr>
  708. <tr>
  709. <th scope="row">4</th>
  710. <td>
  711. <a target="_blank"
  712. href="https://opensea.io/assets/0xce5e90533d9dbc30eac8a3610a681fc7aaa23193/43100040225"><img
  713. src="./img/sec03/top5webp.webp" alt=""></a>
  714. <div class="sec03-table-text" style="display: inline-block ;">
  715. <div>
  716. <a target="_blank" href="https://opensea.io/nifty-gateway-omnibus">
  717. <h1>nifty-gateway-omnibus</h1>
  718. </a>
  719. </div>
  720. <div>
  721. <a target="_blank"
  722. href="https://opensea.io/assets/0xce5e90533d9dbc30eac8a3610a681fc7aaa23193/43100040225">
  723. <p>Seven Nation Army Remix</p>
  724. <p> 004 #225/333(MUSIC)</p>
  725. </a>
  726. </div>
  727. </div>
  728. </td>
  729. </tr>
  730. <tr>
  731. <th scope="row">5</th>
  732. <td>
  733. <a target="_blank"
  734. href="https://www.oursong.com/project/dprnydqw/song-share-card"><img
  735. src="./img/work/work2webp.webp" alt=""></a>
  736. <div class="sec03-table-text" style="display: inline-block ;">
  737. <div>
  738. <a target="_blank" href="https://www.youtube.com/watch?v=uZtX_3TRdiE">
  739. <h1>楊夏蕙</h1>
  740. </a>
  741. </div>
  742. <div>
  743. <a target="_blank"
  744. href="https://www.oursong.com/project/dprnydqw/song-share-card">
  745. <p>1970Marlboro</p>
  746. </a>
  747. </div>
  748. <p style="opacity: 0;">Backdated NFT/Ethereum Stamp</p>
  749. </div>
  750. </td>
  751. </tr>
  752. </tbody>
  753. </table>
  754. </div>
  755. <div class="col-lg-6">
  756. <table class="table ">
  757. <tbody>
  758. <tr>
  759. <th scope="row">1</th>
  760. <td>
  761. <a target="_blank" href="https://twitter.com/beeple"><img
  762. src="./img/sec03/sec04-top-11.jpg" alt=""></a>
  763. <div class="sec03-table-text" style="display: inline-block ;">
  764. <div>
  765. <h1 style="opacity: 0;">beeple</h1>
  766. <a target="_blank" href="https://twitter.com/beeple">
  767. <h1>beeple</h1>
  768. </a>
  769. <h1 style="opacity: 0;">beeple</h1>
  770. </div>
  771. <div>
  772. </div>
  773. </div>
  774. </td>
  775. </tr>
  776. <tr>
  777. <th scope="row">2</th>
  778. <td>
  779. <a target="_blank" href="https://twitter.com/A_Giant_Swan/photo"> <img
  780. src="./img/sec03/sec04-top-12webp.webp" alt=""></a>
  781. <div class="sec03-table-text" style="display: inline-block ;">
  782. <div>
  783. <a target="_blank" href="https://twitter.com/A_Giant_Swan/photo">
  784. <h1 style="opacity: 0;">beeple</h1>
  785. <h1>GIANT SWAN</h1>
  786. <h1 style="opacity: 0;">beeple</h1>
  787. </a>
  788. </div>
  789. <div>
  790. </div>
  791. </div>
  792. </td>
  793. </tr>
  794. <tr>
  795. <th scope="row">3</th>
  796. <td>
  797. <a target="https://www.thehashmasks.com/" href="https://www.thehashmasks.com/"><img
  798. src="./img/sec03/sec04-top-13webp.webp" alt=""></a>
  799. <div class="sec03-table-text" style="display: inline-block ;">
  800. <div>
  801. <a target="_blank" href="https://www.thehashmasks.com/">
  802. <h1 style="opacity: 0;">beeple</h1>
  803. <h1>HASHMASKS</h1>
  804. <h1 style="opacity: 0;">beeple</h1>
  805. </a>
  806. </div>
  807. <div>
  808. </div>
  809. </div>
  810. </td>
  811. </tr>
  812. <tr>
  813. <th scope="row">4</th>
  814. <td>
  815. <a target="https://twitter.com/fewocious" href="https://twitter.com/fewocious"><img
  816. src="./img/sec03/sec04-top-14webp.webp" alt=""></a>
  817. <div class="sec03-table-text" style="display: inline-block ;">
  818. <div>
  819. <a target="_blank" href="https://twitter.com/fewocious">
  820. <h1 style="opacity: 0;">beeple</h1>
  821. <h1>FEWoCIOUS</h1>
  822. <h1 style="opacity: 0;">beeple</h1>
  823. </a>
  824. </div>
  825. <div>
  826. </div>
  827. </div>
  828. </td>
  829. </tr>
  830. <tr>
  831. <th scope="row">5</th>
  832. <td>
  833. <a target="_blank" href="https://twitter.com/pplpleasr1?lang=fr"> <img
  834. src="./img/sec03/11webp.webp" alt=""></a>
  835. <div class="sec03-table-text" style="display: inline-block ;">
  836. <div>
  837. <a target="_blank" href="https://twitter.com/pplpleasr1?lang=fr">
  838. <h1 style="opacity: 0;">beeple</h1>
  839. <h1>pplpleasr</h1>
  840. <h1 style="opacity: 0;">beeple</h1>
  841. </a>
  842. </div>
  843. <div>
  844. </div>
  845. </div>
  846. </td>
  847. </tr>
  848. </tbody>
  849. </table>
  850. </div>
  851. </div>
  852. </div>
  853. </section>
  854. <section class="adv01 py-5 bg-light my-5">
  855. <div class="adv01-1 container-fluid text-center">
  856. <a target="_blank" href="https://www.facebook.com/ARK.TPE/">
  857. <img style="object-fit: cover;" class="img-fluid" src="./img/adv/adv3.webp" alt="">
  858. </a>
  859. </div>
  860. </section>
  861. <!-- <div id="sec-adv2-container" class="container-fluid pb-5">
  862. <div id="sec-adv2-card" class="row">
  863. <div class="col-12 py-3 col-lg-6">
  864. <a target="_blank" href="https://www.facebook.com/ARK.TPE/"><img style="object-fit: cover;"
  865. class="img-fluid" src="./img/adv/adv3.webp" alt=""> </a>
  866. </div>
  867. <div class="col-12 py-3 col-lg-6">
  868. <a target="_blank" href="https://tw.puma.com/v2/official/SalePageCategory/351855?sortMode=Curator"><img
  869. class="img-fluid" src="./img/adv/adv2-2.webp" alt=""></a>
  870. </div>
  871. </div>
  872. </div> -->
  873. <!-- 排名區塊-手機板 -->
  874. <section id="sec03-moblie">
  875. <div class="row" style="padding:0; margin: 0 auto; width: 95vw;">
  876. <div id="sec03-title-1" class="col-6" style="padding:0; margin: 0;">
  877. <h1 class="sec03-table-title">COMMUNITY PICKS</h1>
  878. </div>
  879. <div id="sec03-title-2" class="col-6" style="padding:0; margin: 0;">
  880. <h1 class="sec03-table-title2">PROMOTED CREATIONS</h1>
  881. </div>
  882. </div>
  883. <div id="sec03-table" class="container-fluid" style="padding:0;">
  884. <img id="sec03-slider-next" style="position: absolute;" class="arrow-table" src="./img/arrow-table.png"
  885. alt="">
  886. <div id="sec03-slider" class="row">
  887. <div id="sec03-slider1" class="col-12">
  888. <table class="table">
  889. <tbody>
  890. <tr>
  891. <th scope="row">1</th>
  892. <td>
  893. <a target="_blank" href="https://www.instagram.com/p/CO0otBGjnFm/"><img
  894. src="./img/sec03/sec03top1.gif" alt=""></a>
  895. <div class="sec03-table-text" style="display: inline-block ;">
  896. <div>
  897. <a target="_blank" href="https://www.instagram.com/iammaskarade/">
  898. <h1>iammaskarade</h1>
  899. </a>
  900. </div>
  901. <div>
  902. <a target="_blank" href="https://www.instagram.com/p/CO0otBGjnFm/">
  903. <p>Backdated NFT/Ethereum Stamp</p>
  904. </a>
  905. </div>
  906. </div>
  907. </td>
  908. </tr>
  909. <tr>
  910. <th scope="row">2</th>
  911. <td>
  912. <a target="_blank"
  913. href="https://opensea.io/assets/0xd92e44ac213b9ebda0178e1523cc0ce177b7fa96/100010115"><img
  914. src="./img/sec03/top2webp.webp" alt=""></a>
  915. <div class="sec03-table-text" style="display: inline-block ;">
  916. <div>
  917. <a target="https://opensea.io/beeple" href="https://opensea.io/beeple">
  918. <h1>beeple</h1>
  919. </a>
  920. </div>
  921. <div>
  922. <a target="_blank"
  923. href="https://opensea.io/assets/0xd92e44ac213b9ebda0178e1523cc0ce177b7fa96/100010115">
  924. <p>The Eternal Cloudsitter</p>
  925. <p>BULL RUN #115/271</p>
  926. </a>
  927. </div>
  928. </div>
  929. </td>
  930. </tr>
  931. <tr>
  932. <th scope="row">3</th>
  933. <td>
  934. <a target="_blank"
  935. href="https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/17695285328414013321162775223300201078905627004348366341411776174679266426881"><img
  936. src="./img/sec03/top4webp.webp" alt=""></a>
  937. <div class="sec03-table-text" style="display: inline-block ;">
  938. <div>
  939. <a target="https://opensea.io/SasGlas" href="https://opensea.io/SasGlas">
  940. <h1>SasGlas</h1>
  941. </a>
  942. </div>
  943. <div>
  944. <a target="_blank"
  945. href="https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/17695285328414013321162775223300201078905627004348366341411776174679266426881">
  946. <p>The Eternal Cloudsitter</p>
  947. </a>
  948. </div>
  949. </div>
  950. </td>
  951. </tr>
  952. <tr>
  953. <th scope="row">4</th>
  954. <td>
  955. <a target="_blank"
  956. href="https://opensea.io/assets/0xce5e90533d9dbc30eac8a3610a681fc7aaa23193/43100040225"><img
  957. src="./img/sec03/top5webp.webp" alt=""></a>
  958. <div class="sec03-table-text" style="display: inline-block ;">
  959. <div>
  960. <a target="_blank" href="https://opensea.io/nifty-gateway-omnibus">
  961. <h1>nifty-gateway-omnibus</h1>
  962. </a>
  963. </div>
  964. <div>
  965. <a target="_blank"
  966. href="https://opensea.io/assets/0xce5e90533d9dbc30eac8a3610a681fc7aaa23193/43100040225">
  967. <p>Seven Nation Army Remix</p>
  968. <p> 004 #225/333(MUSIC)</p>
  969. </a>
  970. </div>
  971. </div>
  972. </td>
  973. </tr>
  974. <tr>
  975. <th scope="row">5</th>
  976. <td>
  977. <a target="_blank"
  978. href="https://www.oursong.com/project/dprnydqw/song-share-card"><img
  979. src="./img/sec03/top3webp.webp" alt=""></a>
  980. <div class="sec03-table-text" style="display: inline-block ;">
  981. <div>
  982. <a target="_blank" href="https://www.youtube.com/watch?v=uZtX_3TRdiE">
  983. <h1>楊夏蕙</h1>
  984. </a>
  985. </div>
  986. <div>
  987. <a target="_blank"
  988. href="https://www.oursong.com/project/dprnydqw/song-share-card">
  989. <p>1970Marlboro</p>
  990. </a>
  991. </div>
  992. </div>
  993. </td>
  994. </tr>
  995. </tbody>
  996. </table>
  997. </div>
  998. <div id="sec03-slider2" class="col-12">
  999. <table class="table ">
  1000. <tbody>
  1001. <tr>
  1002. <th scope="row">1</th>
  1003. <td>
  1004. <a target="_blank" href="https://twitter.com/beeple"><img
  1005. src="./img/sec03/sec04-top-11.jpg" alt=""></a>
  1006. <div class="sec03-table-text" style="display: inline-block ;">
  1007. <div>
  1008. <a target="https://twitter.com/beeple" href="https://twitter.com/beeple">
  1009. <h1>beeple</h1>
  1010. </a>
  1011. </div>
  1012. <div>
  1013. </div>
  1014. </div>
  1015. </td>
  1016. </tr>
  1017. <tr>
  1018. <th scope="row">2</th>
  1019. <td>
  1020. <a target="_blank" href="https://twitter.com/A_Giant_Swan/photo"> <img
  1021. src="./img/sec03/sec04-top-12webp.webp" alt=""></a>
  1022. <div class="sec03-table-text" style="display: inline-block ;">
  1023. <div>
  1024. <a target="https://twitter.com/A_Giant_Swan/photo"
  1025. href="https://twitter.com/A_Giant_Swan/photo">
  1026. <h1>GIANT SWAN</h1>
  1027. </a>
  1028. </div>
  1029. <div>
  1030. </div>
  1031. </div>
  1032. </td>
  1033. </tr>
  1034. <tr>
  1035. <th scope="row">3</th>
  1036. <td>
  1037. <a target="_blank" href="https://www.thehashmasks.com/"><img
  1038. src="./img/sec03/sec04-top-13webp.webp" alt=""></a>
  1039. <div class="sec03-table-text" style="display: inline-block ;">
  1040. <div>
  1041. <a target="https://www.thehashmasks.com/"
  1042. href="https://www.thehashmasks.com/">
  1043. <h1>HASHMASKS</h1>
  1044. </a>
  1045. </div>
  1046. <div>
  1047. </div>
  1048. </div>
  1049. </td>
  1050. </tr>
  1051. <tr>
  1052. <th scope="row">4</th>
  1053. <td>
  1054. <a target="_blank" href="https://twitter.com/fewocious"><img
  1055. src="./img/sec03/sec04-top-14webp.webp" alt=""></a>
  1056. <div class="sec03-table-text" style="display: inline-block ;">
  1057. <div>
  1058. <a target="https://twitter.com/fewocious"
  1059. href="https://twitter.com/fewocious">
  1060. <h1>FEWoCIOUS</h1>
  1061. </a>
  1062. </div>
  1063. <div>
  1064. </div>
  1065. </div>
  1066. </td>
  1067. </tr>
  1068. <tr>
  1069. <th scope="row">5</th>
  1070. <td>
  1071. <a target="_blank" href="https://twitter.com/pplpleasr1?lang=fr"> <img
  1072. src="./img/sec03/11webp.webp" alt=""></a>
  1073. <div class="sec03-table-text" style="display: inline-block ;">
  1074. <div>
  1075. <a target="https://twitter.com/pplpleasr1?lang=fr"
  1076. href="https://twitter.com/pplpleasr1?lang=fr">
  1077. <h1>pplpleasr</h1>
  1078. </a>
  1079. </div>
  1080. <div>
  1081. </div>
  1082. </div>
  1083. </td>
  1084. </tr>
  1085. </tbody>
  1086. </table>
  1087. </div>
  1088. </div>
  1089. </div>
  1090. </section>
  1091. <!-- 洞察報告-電腦版 -->
  1092. <section id="sec04">
  1093. <div class="container-fluid">
  1094. <div class="sec04-title">
  1095. <h1 class="secn-title">洞察報告</h1>
  1096. <hr class="line">
  1097. </div>
  1098. <div id="sec04-container" class="row row-cols-1 row-cols-md-3 g-4">
  1099. <div class="col">
  1100. <div class="card h-100 d-inline-block">
  1101. <img src="./img/sec10/nft-develop.jpg" class="card-img-top" alt="...">
  1102. <div style="height: 280px;" class="card-body mb-2">
  1103. <h5 class="card-title">NFT能為全球的創作群體帶來無限的蓬勃發展,種子風險基金的共同創辦人Chris Dixon觀點分享</h5>
  1104. <p class="card-text">NFT
  1105. 加密市場景氣外溢,大量創作群體湧入NFT交易網站上架自己的作品,知名音樂娛樂IP、國際品牌、遊戲產界也開始進入這個市場,這也為NFT未來的市場帶來了足夠的厚度,以承載數偣成長的收藏、投資、遊戲等需求。
  1106. </p>
  1107. </div>
  1108. <a class="px-3 py-5 my-5" target="_blank" href="./nft-develop.html"><button
  1109. class="learn-more">LearnMore</button></a>
  1110. </div>
  1111. </div>
  1112. <div class="col">
  1113. <div class="card h-100 d-inline-block">
  1114. <img src="./img/sec04/safe_image.jpg" class="card-img-top" alt="...">
  1115. <div style="height: 280px;" class="card-body mb-2">
  1116. <h5 class="card-title">區塊鏈可以幫助出版商提高受眾信任度,46% 的受訪者表示他們願意為準確的新聞付費</h5>
  1117. <p class="card-text">"區塊鏈如何增加信任?艾米·惠特克在《華爾街日報》上寫道。“什麼可以防止篡改歷史記錄——是否有可能為子孫後代保護這些信息?” Haber 和
  1118. Stornetta 的解決方案:........。
  1119. </p>
  1120. </div>
  1121. <a class="px-3 py-5 my-5" target="_blank"
  1122. href="https://www.facebook.com/nftboard/posts/121145806877121"><button
  1123. class="learn-more">LearnMore</button></a>
  1124. </div>
  1125. </div>
  1126. <div class="col">
  1127. <div class="card h-100 d-inline-block">
  1128. <img src="./img/sec04/5.png" class="card-img-top" alt="...">
  1129. <div style="height: 280px;" class="card-body">
  1130. <h5 class="card-title">NFT 熱潮”對生態系統有何影響?被炒作吸引的人是留下來還是來得快?繁榮後看起來像繁榮前嗎?</h5>
  1131. <p class="card-text">之前:2020年9月至12月繁榮前:2021 年 1 月至 2 月繁榮期:2021 年 3 月至 4 月繁榮後:從 5 月到 2021 年 6
  1132. 月的第一周這表明很大一部分新用戶在 2021 年炒作之初就對 NFT 感興趣,然後在接下來的幾個月中保持活躍。
  1133. </p>
  1134. </div>
  1135. <a class="px-3 py-5 my-5" target="_blank"
  1136. href="https://www.facebook.com/nftboard/posts/121061626885539"><button
  1137. class="learn-more">LearnMore</button></a>
  1138. </div>
  1139. </div>
  1140. <!-- <div class="col">
  1141. <div class="card h-100 d-inline-block">
  1142. <img src="./img/sec04/sec01-img-03.jpg" class="card-img-top" alt="...">
  1143. <div style="height: 280px;" class="card-body mb-2">
  1144. <h5 class="card-title">藝術家塑造了我們的集體文化,推動了幾代人的進步。</h5>
  1145. <p class="card-text">借助 NFT、DeFi 和 VR,我們可以顛覆現有的剝削創作者的模式,而是推動一場革命,引領下一次復興。
  1146. </p>
  1147. </div>
  1148. <a class="p-3" target="_blank"
  1149. href="https://www.facebook.com/nftboard/posts/120000610324974"><button
  1150. class="learn-more">LearnMore</button></a>
  1151. </div>
  1152. </div> -->
  1153. <!-- <div class="col">
  1154. <div class="card h-100 d-inline-block">
  1155. <img src="./img/sec04/sec04-img-04.jpg" class="card-img-top" alt="...">
  1156. <div style="height: 320px;" class="card-body mb-5">
  1157. <h5 class="card-title">當NFT變成一種流行病~</h5>
  1158. <p class="card-text">IMVU 營銷總監 Lindsay Anne Aamodt 的說法,這種流行病幫助加速了虛擬時尚的增長,並幫助推動 NFT 超越了藝術領域。
  1159. </p>
  1160. </div>
  1161. <a class="p-3" target="_blank" href="https://www.facebook.com/nftboard/posts/120019486989753"><button
  1162. class="learn-more">LearnMore</button></a>
  1163. </div>
  1164. </div> -->
  1165. </div>
  1166. </div>
  1167. </section>
  1168. <!-- 洞察報告-手機板 -->
  1169. <section id="sec04-moblie">
  1170. <!-- <img id="sec04-slider-next" style="position: absolute;" class="arrow-table" src="./img/arrow-table.png" alt=""> -->
  1171. <div id="sec04-moblie-title" class="container-fluid">
  1172. <h1 class="secn-title">洞察報告</h1>
  1173. <hr class="line">
  1174. <div id="sec04-moblie-container" class="row row-cols-1 row-cols-md-4 g-4">
  1175. <div class="col">
  1176. <div class="card h-100">
  1177. <img src="./img/sec10/nft-develop.jpg" class="card-img-top" alt="...">
  1178. <div class="card-body">
  1179. <h5 class="sec04-m-title card-title">NFT能為全球的創作群體帶來無限的蓬勃發展,種子風險基金的共同創辦人Chris Dixon觀點分享</h5>
  1180. <p class="sec04-m-text card-text">NFT
  1181. 加密市場景氣外溢,大量創作群體湧入NFT交易網站上架自己的作品,知名音樂娛樂IP、國際品牌、遊戲產界也開始進入這個市場,這也為NFT未來的市場帶來了足夠的厚度,以承載數偣成長的收藏、投資、遊戲等需求。
  1182. </p>
  1183. <a target="_blank" href="./nft-develop.html"><button
  1184. class="learn-more">LearnMore</button></a>
  1185. </div>
  1186. </div>
  1187. </div>
  1188. <div class="col">
  1189. <div class="card h-100">
  1190. <img src="./img/sec04/safe_image.jpg" class="card-img-top" alt="...">
  1191. <div class="card-body">
  1192. <h5 class="sec04-m-title card-title">區塊鏈可以幫助出版商提高受眾信任度,46% 的受訪者表示他們願意為準確的新聞付費</h5>
  1193. <p class="sec04-m-text card-text">
  1194. "區塊鏈如何增加信任?艾米·惠特克在《華爾街日報》上寫道。“什麼可以防止篡改歷史記錄——是否有可能為子孫後代保護這些信息?” Haber 和
  1195. Stornetta 的解決方案:........。
  1196. </p>
  1197. <a target="_blank" href="https://www.facebook.com/nftboard/posts/121145806877121"><button
  1198. class="learn-more">LearnMore</button></a>
  1199. </div>
  1200. </div>
  1201. </div>
  1202. <div class="col">
  1203. <div class="card h-100">
  1204. <img src="./img/sec04/5.png" class="card-img-top" alt="...">
  1205. <div class="card-body">
  1206. <h5 class="sec04-m-title card-title">NFT 熱潮”對生態系統有何影響?被炒作吸引的人是留下來還是來得快?繁榮後看起來像繁榮前嗎?</h5>
  1207. <p class="sec04-m-text card-text">之前:2020年9月至12月
  1208. 繁榮前:2021 年 1 月至 2 月
  1209. 繁榮期:2021 年 3 月至 4 月
  1210. 繁榮後:從 5 月到 2021 年 6 月的第一周
  1211. 這表明很大一部分新用戶在 2021 年炒作之初就對 NFT 感興趣,然後在接下來的幾個月中保持活躍。
  1212. </p>
  1213. <a target="_blank" href="https://www.facebook.com/nftboard/posts/121061626885539"><button
  1214. class="learn-more">LearnMore</button></a>
  1215. </div>
  1216. </div>
  1217. </div>
  1218. <!-- <div class="col">
  1219. <div class="card h-100">
  1220. <img src="./img/sec04/sec01-img-03.jpg" class="card-img-top" alt="...">
  1221. <div class="card-body">
  1222. <h5 class="sec04-m-title card-title">藝術家塑造了我們的集體文化,推動了幾代人的進步。</h5>
  1223. <p class="sec04-m-text card-text">借助 NFT、DeFi 和 VR,我們可以顛覆現有的剝削創作者的模式,而是推動一場革命,引領下一次復興。
  1224. </p>
  1225. <a target="_blank" href="https://www.facebook.com/nftboard/posts/120000610324974"><button
  1226. class="learn-more">LearnMore</button></a>
  1227. </div>
  1228. </div>
  1229. </div>
  1230. <div class="col">
  1231. <div class="card h-100">
  1232. <img src="./img/sec04/sec04-img-04.jpg" class="card-img-top" alt="...">
  1233. <div class="card-body">
  1234. <h5 class="sec04-m-title card-title">當NFT變成一種流行病~</h5>
  1235. <p class="sec04-m-text card-text">IMVU 營銷總監 Lindsay Anne Aamodt 的說法,這種流行病幫助加速了虛擬時尚的增長,並幫助推動 NFT 超越了藝術領域。
  1236. </p>
  1237. <a target="_blank" href="https://www.facebook.com/nftboard/posts/120019486989753"><button
  1238. class="learn-more">LearnMore</button></a>
  1239. </div>
  1240. </div>
  1241. </div> -->
  1242. </div>
  1243. <div class="sec04-button">
  1244. <div class="mouse_scroll">
  1245. <div class="testright">
  1246. <span class="m_scroll_arrows unu "></span>
  1247. <span class="m_scroll_arrows doi "></span>
  1248. <span class="m_scroll_arrows trei "></span>
  1249. </div>
  1250. <div class="mouse">
  1251. <div class="wheel"></div>
  1252. </div>
  1253. <div class="testleft">
  1254. <span class="m_scroll_arrows unu"></span>
  1255. <span class="m_scroll_arrows doi"></span>
  1256. <span class="m_scroll_arrows trei"></span>
  1257. </div>
  1258. </div>
  1259. </div>
  1260. </div>
  1261. </section>
  1262. <!-- 熱門作品 電腦版 -->
  1263. <section id="sec05">
  1264. <div class="container-fluid">
  1265. <h1 class="secn-title">熱門作品</h1>
  1266. <!-- <div id="tag">
  1267. <a href=""><button>Art</button></a>
  1268. <a href=""><button>Collectible</button></a>
  1269. <a href=""><button>GameItems</button></a>
  1270. <a href=""><button>Domains</button></a>
  1271. <a href=""><button>Templates</button></a>
  1272. </div> -->
  1273. <div id="sec05-container" class="container-fluid">
  1274. <div id="sec05-destop-slider" class="row">
  1275. <div class="col">
  1276. <div class="card">
  1277. <blockquote class="instagram-media"
  1278. data-instgrm-permalink="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  1279. data-instgrm-version="13"
  1280. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1281. <div style="padding:16px;"> <a
  1282. href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  1283. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1284. target="_blank">
  1285. <div style=" display: flex; flex-direction: row; align-items: center;">
  1286. <div
  1287. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1288. </div>
  1289. <div
  1290. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1291. <div
  1292. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1293. </div>
  1294. <div
  1295. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1296. </div>
  1297. </div>
  1298. </div>
  1299. <div style="padding: 19% 0;"></div>
  1300. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1301. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1302. xmlns="https://www.w3.org/2000/svg"
  1303. xmlns:xlink="https://www.w3.org/1999/xlink">
  1304. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1305. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1306. <g>
  1307. <path
  1308. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1309. </path>
  1310. </g>
  1311. </g>
  1312. </g>
  1313. </svg></div>
  1314. <div style="padding-top: 8px;">
  1315. <div
  1316. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1317. 在 Instagram 查看這則貼文</div>
  1318. </div>
  1319. <div style="padding: 12.5% 0;"></div>
  1320. <div
  1321. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1322. <div>
  1323. <div
  1324. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1325. </div>
  1326. <div
  1327. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1328. </div>
  1329. <div
  1330. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1331. </div>
  1332. </div>
  1333. <div style="margin-left: 8px;">
  1334. <div
  1335. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1336. </div>
  1337. <div
  1338. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1339. </div>
  1340. </div>
  1341. <div style="margin-left: auto;">
  1342. <div
  1343. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1344. </div>
  1345. <div
  1346. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1347. </div>
  1348. <div
  1349. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1350. </div>
  1351. </div>
  1352. </div>
  1353. <div
  1354. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1355. <div
  1356. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1357. </div>
  1358. <div
  1359. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1360. </div>
  1361. </div>
  1362. </a>
  1363. <p
  1364. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1365. <a href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  1366. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1367. target="_blank">NFT(@nft)分享的貼文</a>
  1368. </p>
  1369. </div>
  1370. </blockquote>
  1371. <script async src="//www.instagram.com/embed.js"></script>
  1372. </div>
  1373. </div>
  1374. <div class="col">
  1375. <div class="card">
  1376. <blockquote class="instagram-media"
  1377. data-instgrm-permalink="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  1378. data-instgrm-version="13"
  1379. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1380. <div style="padding:16px;"> <a
  1381. href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  1382. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1383. target="_blank">
  1384. <div style=" display: flex; flex-direction: row; align-items: center;">
  1385. <div
  1386. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1387. </div>
  1388. <div
  1389. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1390. <div
  1391. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1392. </div>
  1393. <div
  1394. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1395. </div>
  1396. </div>
  1397. </div>
  1398. <div style="padding: 19% 0;"></div>
  1399. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1400. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1401. xmlns="https://www.w3.org/2000/svg"
  1402. xmlns:xlink="https://www.w3.org/1999/xlink">
  1403. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1404. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1405. <g>
  1406. <path
  1407. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1408. </path>
  1409. </g>
  1410. </g>
  1411. </g>
  1412. </svg></div>
  1413. <div style="padding-top: 8px;">
  1414. <div
  1415. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1416. 在 Instagram 查看這則貼文</div>
  1417. </div>
  1418. <div style="padding: 12.5% 0;"></div>
  1419. <div
  1420. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1421. <div>
  1422. <div
  1423. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1424. </div>
  1425. <div
  1426. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1427. </div>
  1428. <div
  1429. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1430. </div>
  1431. </div>
  1432. <div style="margin-left: 8px;">
  1433. <div
  1434. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1435. </div>
  1436. <div
  1437. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1438. </div>
  1439. </div>
  1440. <div style="margin-left: auto;">
  1441. <div
  1442. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1443. </div>
  1444. <div
  1445. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1446. </div>
  1447. <div
  1448. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1449. </div>
  1450. </div>
  1451. </div>
  1452. <div
  1453. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1454. <div
  1455. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1456. </div>
  1457. <div
  1458. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1459. </div>
  1460. </div>
  1461. </a>
  1462. <p
  1463. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1464. <a href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  1465. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1466. target="_blank">Andreas Wannerstedt(@wannerstedt)分享的貼文</a>
  1467. </p>
  1468. </div>
  1469. </blockquote>
  1470. <script async src="//www.instagram.com/embed.js"></script>
  1471. </div>
  1472. </div>
  1473. <div class="col">
  1474. <div class="card">
  1475. <blockquote class="instagram-media"
  1476. data-instgrm-permalink="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  1477. data-instgrm-version="13"
  1478. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1479. <div style="padding:16px;"> <a
  1480. href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  1481. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1482. target="_blank">
  1483. <div style=" display: flex; flex-direction: row; align-items: center;">
  1484. <div
  1485. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1486. </div>
  1487. <div
  1488. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1489. <div
  1490. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1491. </div>
  1492. <div
  1493. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1494. </div>
  1495. </div>
  1496. </div>
  1497. <div style="padding: 19% 0;"></div>
  1498. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1499. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1500. xmlns="https://www.w3.org/2000/svg"
  1501. xmlns:xlink="https://www.w3.org/1999/xlink">
  1502. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1503. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1504. <g>
  1505. <path
  1506. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1507. </path>
  1508. </g>
  1509. </g>
  1510. </g>
  1511. </svg></div>
  1512. <div style="padding-top: 8px;">
  1513. <div
  1514. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1515. 在 Instagram 查看這則貼文</div>
  1516. </div>
  1517. <div style="padding: 12.5% 0;"></div>
  1518. <div
  1519. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1520. <div>
  1521. <div
  1522. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1523. </div>
  1524. <div
  1525. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1526. </div>
  1527. <div
  1528. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1529. </div>
  1530. </div>
  1531. <div style="margin-left: 8px;">
  1532. <div
  1533. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1534. </div>
  1535. <div
  1536. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1537. </div>
  1538. </div>
  1539. <div style="margin-left: auto;">
  1540. <div
  1541. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1542. </div>
  1543. <div
  1544. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1545. </div>
  1546. <div
  1547. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1548. </div>
  1549. </div>
  1550. </div>
  1551. <div
  1552. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1553. <div
  1554. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1555. </div>
  1556. <div
  1557. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1558. </div>
  1559. </div>
  1560. </a>
  1561. <p
  1562. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1563. <a href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  1564. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1565. target="_blank">Don(@visualdon)分享的貼文</a>
  1566. </p>
  1567. </div>
  1568. </blockquote>
  1569. <script async src="//www.instagram.com/embed.js"></script>
  1570. </div>
  1571. </div>
  1572. <div class="col">
  1573. <div class="card">
  1574. <blockquote class="instagram-media"
  1575. data-instgrm-permalink="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  1576. data-instgrm-version="13"
  1577. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1578. <div style="padding:16px;"> <a
  1579. href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  1580. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1581. target="_blank">
  1582. <div style=" display: flex; flex-direction: row; align-items: center;">
  1583. <div
  1584. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1585. </div>
  1586. <div
  1587. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1588. <div
  1589. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1590. </div>
  1591. <div
  1592. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1593. </div>
  1594. </div>
  1595. </div>
  1596. <div style="padding: 19% 0;"></div>
  1597. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1598. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1599. xmlns="https://www.w3.org/2000/svg"
  1600. xmlns:xlink="https://www.w3.org/1999/xlink">
  1601. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1602. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1603. <g>
  1604. <path
  1605. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1606. </path>
  1607. </g>
  1608. </g>
  1609. </g>
  1610. </svg></div>
  1611. <div style="padding-top: 8px;">
  1612. <div
  1613. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1614. 在 Instagram 查看這則貼文</div>
  1615. </div>
  1616. <div style="padding: 12.5% 0;"></div>
  1617. <div
  1618. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1619. <div>
  1620. <div
  1621. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1622. </div>
  1623. <div
  1624. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1625. </div>
  1626. <div
  1627. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1628. </div>
  1629. </div>
  1630. <div style="margin-left: 8px;">
  1631. <div
  1632. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1633. </div>
  1634. <div
  1635. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1636. </div>
  1637. </div>
  1638. <div style="margin-left: auto;">
  1639. <div
  1640. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1641. </div>
  1642. <div
  1643. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1644. </div>
  1645. <div
  1646. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1647. </div>
  1648. </div>
  1649. </div>
  1650. <div
  1651. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1652. <div
  1653. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1654. </div>
  1655. <div
  1656. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1657. </div>
  1658. </div>
  1659. </a>
  1660. <p
  1661. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1662. <a href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  1663. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1664. target="_blank">Jeff Cole(@cole)分享的貼文</a>
  1665. </p>
  1666. </div>
  1667. </blockquote>
  1668. <script async src="//www.instagram.com/embed.js"></script>
  1669. </div>
  1670. </div>
  1671. <div class="col">
  1672. <div class="card">
  1673. <blockquote class="instagram-media"
  1674. data-instgrm-permalink="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1675. data-instgrm-version="13"
  1676. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1677. <div style="padding:16px;"> <a
  1678. href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1679. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1680. target="_blank">
  1681. <div style=" display: flex; flex-direction: row; align-items: center;">
  1682. <div
  1683. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1684. </div>
  1685. <div
  1686. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1687. <div
  1688. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1689. </div>
  1690. <div
  1691. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1692. </div>
  1693. </div>
  1694. </div>
  1695. <div style="padding: 19% 0;"></div>
  1696. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1697. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1698. xmlns="https://www.w3.org/2000/svg"
  1699. xmlns:xlink="https://www.w3.org/1999/xlink">
  1700. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1701. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1702. <g>
  1703. <path
  1704. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1705. </path>
  1706. </g>
  1707. </g>
  1708. </g>
  1709. </svg></div>
  1710. <div style="padding-top: 8px;">
  1711. <div
  1712. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1713. 在 Instagram 查看這則貼文</div>
  1714. </div>
  1715. <div style="padding: 12.5% 0;"></div>
  1716. <div
  1717. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1718. <div>
  1719. <div
  1720. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1721. </div>
  1722. <div
  1723. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1724. </div>
  1725. <div
  1726. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1727. </div>
  1728. </div>
  1729. <div style="margin-left: 8px;">
  1730. <div
  1731. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1732. </div>
  1733. <div
  1734. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1735. </div>
  1736. </div>
  1737. <div style="margin-left: auto;">
  1738. <div
  1739. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1740. </div>
  1741. <div
  1742. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1743. </div>
  1744. <div
  1745. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1746. </div>
  1747. </div>
  1748. </div>
  1749. <div
  1750. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1751. <div
  1752. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1753. </div>
  1754. <div
  1755. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1756. </div>
  1757. </div>
  1758. </a>
  1759. <p
  1760. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1761. <a href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1762. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1763. target="_blank">spaceclub(@spaceclub)分享的貼文</a>
  1764. </p>
  1765. </div>
  1766. </blockquote>
  1767. <script async src="//www.instagram.com/embed.js"></script>
  1768. </div>
  1769. </div>
  1770. <div class="col">
  1771. <div class="card">
  1772. <blockquote class="instagram-media"
  1773. data-instgrm-permalink="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1774. data-instgrm-version="13"
  1775. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1776. <div style="padding:16px;"> <a
  1777. href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1778. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1779. target="_blank">
  1780. <div style=" display: flex; flex-direction: row; align-items: center;">
  1781. <div
  1782. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1783. </div>
  1784. <div
  1785. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1786. <div
  1787. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1788. </div>
  1789. <div
  1790. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1791. </div>
  1792. </div>
  1793. </div>
  1794. <div style="padding: 19% 0;"></div>
  1795. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1796. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1797. xmlns="https://www.w3.org/2000/svg"
  1798. xmlns:xlink="https://www.w3.org/1999/xlink">
  1799. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1800. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1801. <g>
  1802. <path
  1803. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1804. </path>
  1805. </g>
  1806. </g>
  1807. </g>
  1808. </svg></div>
  1809. <div style="padding-top: 8px;">
  1810. <div
  1811. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1812. 在 Instagram 查看這則貼文</div>
  1813. </div>
  1814. <div style="padding: 12.5% 0;"></div>
  1815. <div
  1816. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1817. <div>
  1818. <div
  1819. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1820. </div>
  1821. <div
  1822. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1823. </div>
  1824. <div
  1825. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1826. </div>
  1827. </div>
  1828. <div style="margin-left: 8px;">
  1829. <div
  1830. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1831. </div>
  1832. <div
  1833. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1834. </div>
  1835. </div>
  1836. <div style="margin-left: auto;">
  1837. <div
  1838. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1839. </div>
  1840. <div
  1841. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1842. </div>
  1843. <div
  1844. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1845. </div>
  1846. </div>
  1847. </div>
  1848. <div
  1849. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1850. <div
  1851. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1852. </div>
  1853. <div
  1854. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1855. </div>
  1856. </div>
  1857. </a>
  1858. <p
  1859. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1860. <a href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1861. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1862. target="_blank">NFT(@nft)分享的貼文</a>
  1863. </p>
  1864. </div>
  1865. </blockquote>
  1866. <script async src="//www.instagram.com/embed.js"></script>
  1867. </div>
  1868. </div>
  1869. <div class="col">
  1870. <div class="card">
  1871. <blockquote class="instagram-media"
  1872. data-instgrm-permalink="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1873. data-instgrm-version="13"
  1874. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1875. <div style="padding:16px;"> <a
  1876. href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1877. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1878. target="_blank">
  1879. <div style=" display: flex; flex-direction: row; align-items: center;">
  1880. <div
  1881. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1882. </div>
  1883. <div
  1884. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1885. <div
  1886. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1887. </div>
  1888. <div
  1889. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1890. </div>
  1891. </div>
  1892. </div>
  1893. <div style="padding: 19% 0;"></div>
  1894. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1895. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1896. xmlns="https://www.w3.org/2000/svg"
  1897. xmlns:xlink="https://www.w3.org/1999/xlink">
  1898. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1899. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1900. <g>
  1901. <path
  1902. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  1903. </path>
  1904. </g>
  1905. </g>
  1906. </g>
  1907. </svg></div>
  1908. <div style="padding-top: 8px;">
  1909. <div
  1910. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1911. 在 Instagram 查看這則貼文</div>
  1912. </div>
  1913. <div style="padding: 12.5% 0;"></div>
  1914. <div
  1915. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1916. <div>
  1917. <div
  1918. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1919. </div>
  1920. <div
  1921. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  1922. </div>
  1923. <div
  1924. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1925. </div>
  1926. </div>
  1927. <div style="margin-left: 8px;">
  1928. <div
  1929. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1930. </div>
  1931. <div
  1932. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  1933. </div>
  1934. </div>
  1935. <div style="margin-left: auto;">
  1936. <div
  1937. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1938. </div>
  1939. <div
  1940. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1941. </div>
  1942. <div
  1943. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1944. </div>
  1945. </div>
  1946. </div>
  1947. <div
  1948. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1949. <div
  1950. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1951. </div>
  1952. <div
  1953. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1954. </div>
  1955. </div>
  1956. </a>
  1957. <p
  1958. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  1959. <a href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1960. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1961. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  1962. </p>
  1963. </div>
  1964. </blockquote>
  1965. <script async src="//www.instagram.com/embed.js"></script>
  1966. </div>
  1967. </div>
  1968. <div class="col">
  1969. <div class="card">
  1970. <blockquote class="instagram-media"
  1971. data-instgrm-permalink="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  1972. data-instgrm-version="13"
  1973. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  1974. <div style="padding:16px;"> <a
  1975. href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  1976. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1977. target="_blank">
  1978. <div style=" display: flex; flex-direction: row; align-items: center;">
  1979. <div
  1980. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1981. </div>
  1982. <div
  1983. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1984. <div
  1985. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1986. </div>
  1987. <div
  1988. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1989. </div>
  1990. </div>
  1991. </div>
  1992. <div style="padding: 19% 0;"></div>
  1993. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1994. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1995. xmlns="https://www.w3.org/2000/svg"
  1996. xmlns:xlink="https://www.w3.org/1999/xlink">
  1997. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1998. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1999. <g>
  2000. <path
  2001. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2002. </path>
  2003. </g>
  2004. </g>
  2005. </g>
  2006. </svg></div>
  2007. <div style="padding-top: 8px;">
  2008. <div
  2009. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2010. 在 Instagram 查看這則貼文</div>
  2011. </div>
  2012. <div style="padding: 12.5% 0;"></div>
  2013. <div
  2014. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2015. <div>
  2016. <div
  2017. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2018. </div>
  2019. <div
  2020. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2021. </div>
  2022. <div
  2023. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2024. </div>
  2025. </div>
  2026. <div style="margin-left: 8px;">
  2027. <div
  2028. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2029. </div>
  2030. <div
  2031. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2032. </div>
  2033. </div>
  2034. <div style="margin-left: auto;">
  2035. <div
  2036. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2037. </div>
  2038. <div
  2039. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2040. </div>
  2041. <div
  2042. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2043. </div>
  2044. </div>
  2045. </div>
  2046. <div
  2047. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2048. <div
  2049. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2050. </div>
  2051. <div
  2052. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2053. </div>
  2054. </div>
  2055. </a>
  2056. <p
  2057. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2058. <a href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  2059. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2060. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  2061. </p>
  2062. </div>
  2063. </blockquote>
  2064. <script async src="//www.instagram.com/embed.js"></script>
  2065. </div>
  2066. </div>
  2067. <div class="col">
  2068. <div class="card">
  2069. <blockquote class="instagram-media"
  2070. data-instgrm-permalink="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2071. data-instgrm-version="13"
  2072. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2073. <div style="padding:16px;"> <a
  2074. href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2075. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2076. target="_blank">
  2077. <div style=" display: flex; flex-direction: row; align-items: center;">
  2078. <div
  2079. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2080. </div>
  2081. <div
  2082. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2083. <div
  2084. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2085. </div>
  2086. <div
  2087. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2088. </div>
  2089. </div>
  2090. </div>
  2091. <div style="padding: 19% 0;"></div>
  2092. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2093. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2094. xmlns="https://www.w3.org/2000/svg"
  2095. xmlns:xlink="https://www.w3.org/1999/xlink">
  2096. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2097. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2098. <g>
  2099. <path
  2100. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2101. </path>
  2102. </g>
  2103. </g>
  2104. </g>
  2105. </svg></div>
  2106. <div style="padding-top: 8px;">
  2107. <div
  2108. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2109. 在 Instagram 查看這則貼文</div>
  2110. </div>
  2111. <div style="padding: 12.5% 0;"></div>
  2112. <div
  2113. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2114. <div>
  2115. <div
  2116. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2117. </div>
  2118. <div
  2119. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2120. </div>
  2121. <div
  2122. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2123. </div>
  2124. </div>
  2125. <div style="margin-left: 8px;">
  2126. <div
  2127. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2128. </div>
  2129. <div
  2130. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2131. </div>
  2132. </div>
  2133. <div style="margin-left: auto;">
  2134. <div
  2135. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2136. </div>
  2137. <div
  2138. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2139. </div>
  2140. <div
  2141. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2142. </div>
  2143. </div>
  2144. </div>
  2145. <div
  2146. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2147. <div
  2148. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2149. </div>
  2150. <div
  2151. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2152. </div>
  2153. </div>
  2154. </a>
  2155. <p
  2156. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2157. <a href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2158. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2159. target="_blank">NFT ART 🎨(@nft__galaxy)分享的貼文</a>
  2160. </p>
  2161. </div>
  2162. </blockquote>
  2163. <script async src="//www.instagram.com/embed.js"></script>
  2164. </div>
  2165. </div>
  2166. <div class="col">
  2167. <div class="card">
  2168. <blockquote class="instagram-media"
  2169. data-instgrm-permalink="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2170. data-instgrm-version="13"
  2171. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2172. <div style="padding:16px;"> <a
  2173. href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2174. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2175. target="_blank">
  2176. <div style=" display: flex; flex-direction: row; align-items: center;">
  2177. <div
  2178. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2179. </div>
  2180. <div
  2181. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2182. <div
  2183. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2184. </div>
  2185. <div
  2186. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2187. </div>
  2188. </div>
  2189. </div>
  2190. <div style="padding: 19% 0;"></div>
  2191. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2192. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2193. xmlns="https://www.w3.org/2000/svg"
  2194. xmlns:xlink="https://www.w3.org/1999/xlink">
  2195. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2196. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2197. <g>
  2198. <path
  2199. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2200. </path>
  2201. </g>
  2202. </g>
  2203. </g>
  2204. </svg></div>
  2205. <div style="padding-top: 8px;">
  2206. <div
  2207. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2208. 在 Instagram 查看這則貼文</div>
  2209. </div>
  2210. <div style="padding: 12.5% 0;"></div>
  2211. <div
  2212. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2213. <div>
  2214. <div
  2215. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2216. </div>
  2217. <div
  2218. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2219. </div>
  2220. <div
  2221. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2222. </div>
  2223. </div>
  2224. <div style="margin-left: 8px;">
  2225. <div
  2226. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2227. </div>
  2228. <div
  2229. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2230. </div>
  2231. </div>
  2232. <div style="margin-left: auto;">
  2233. <div
  2234. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2235. </div>
  2236. <div
  2237. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2238. </div>
  2239. <div
  2240. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2241. </div>
  2242. </div>
  2243. </div>
  2244. <div
  2245. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2246. <div
  2247. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2248. </div>
  2249. <div
  2250. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2251. </div>
  2252. </div>
  2253. </a>
  2254. <p
  2255. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2256. <a href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2257. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2258. target="_blank">Yohann Schepacz - OYO(@yohannschepaczart)分享的貼文</a>
  2259. </p>
  2260. </div>
  2261. </blockquote>
  2262. <script async src="//www.instagram.com/embed.js"></script>
  2263. </div>
  2264. </div>
  2265. <div class="col">
  2266. <div class="card">
  2267. <blockquote class="instagram-media"
  2268. data-instgrm-permalink="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2269. data-instgrm-version="13"
  2270. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2271. <div style="padding:16px;"> <a
  2272. href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2273. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2274. target="_blank">
  2275. <div style=" display: flex; flex-direction: row; align-items: center;">
  2276. <div
  2277. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2278. </div>
  2279. <div
  2280. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2281. <div
  2282. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2283. </div>
  2284. <div
  2285. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2286. </div>
  2287. </div>
  2288. </div>
  2289. <div style="padding: 19% 0;"></div>
  2290. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2291. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2292. xmlns="https://www.w3.org/2000/svg"
  2293. xmlns:xlink="https://www.w3.org/1999/xlink">
  2294. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2295. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2296. <g>
  2297. <path
  2298. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2299. </path>
  2300. </g>
  2301. </g>
  2302. </g>
  2303. </svg></div>
  2304. <div style="padding-top: 8px;">
  2305. <div
  2306. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2307. 在 Instagram 查看這則貼文</div>
  2308. </div>
  2309. <div style="padding: 12.5% 0;"></div>
  2310. <div
  2311. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2312. <div>
  2313. <div
  2314. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2315. </div>
  2316. <div
  2317. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2318. </div>
  2319. <div
  2320. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2321. </div>
  2322. </div>
  2323. <div style="margin-left: 8px;">
  2324. <div
  2325. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2326. </div>
  2327. <div
  2328. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2329. </div>
  2330. </div>
  2331. <div style="margin-left: auto;">
  2332. <div
  2333. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2334. </div>
  2335. <div
  2336. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2337. </div>
  2338. <div
  2339. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2340. </div>
  2341. </div>
  2342. </div>
  2343. <div
  2344. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2345. <div
  2346. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2347. </div>
  2348. <div
  2349. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2350. </div>
  2351. </div>
  2352. </a>
  2353. <p
  2354. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2355. <a href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2356. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2357. target="_blank">NFT(@nft)分享的貼文</a>
  2358. </p>
  2359. </div>
  2360. </blockquote>
  2361. <script async src="//www.instagram.com/embed.js"></script>
  2362. </div>
  2363. </div>
  2364. <div class="col">
  2365. <div class="card">
  2366. <blockquote class="instagram-media"
  2367. data-instgrm-permalink="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  2368. data-instgrm-version="13"
  2369. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2370. <div style="padding:16px;"> <a
  2371. href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  2372. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2373. target="_blank">
  2374. <div style=" display: flex; flex-direction: row; align-items: center;">
  2375. <div
  2376. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2377. </div>
  2378. <div
  2379. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2380. <div
  2381. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2382. </div>
  2383. <div
  2384. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2385. </div>
  2386. </div>
  2387. </div>
  2388. <div style="padding: 19% 0;"></div>
  2389. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2390. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2391. xmlns="https://www.w3.org/2000/svg"
  2392. xmlns:xlink="https://www.w3.org/1999/xlink">
  2393. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2394. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2395. <g>
  2396. <path
  2397. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2398. </path>
  2399. </g>
  2400. </g>
  2401. </g>
  2402. </svg></div>
  2403. <div style="padding-top: 8px;">
  2404. <div
  2405. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2406. 在 Instagram 查看這則貼文</div>
  2407. </div>
  2408. <div style="padding: 12.5% 0;"></div>
  2409. <div
  2410. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2411. <div>
  2412. <div
  2413. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2414. </div>
  2415. <div
  2416. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2417. </div>
  2418. <div
  2419. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2420. </div>
  2421. </div>
  2422. <div style="margin-left: 8px;">
  2423. <div
  2424. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2425. </div>
  2426. <div
  2427. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2428. </div>
  2429. </div>
  2430. <div style="margin-left: auto;">
  2431. <div
  2432. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2433. </div>
  2434. <div
  2435. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2436. </div>
  2437. <div
  2438. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2439. </div>
  2440. </div>
  2441. </div>
  2442. <div
  2443. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2444. <div
  2445. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2446. </div>
  2447. <div
  2448. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2449. </div>
  2450. </div>
  2451. </a>
  2452. <p
  2453. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2454. <a href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  2455. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2456. target="_blank">NFT(@nft)分享的貼文</a>
  2457. </p>
  2458. </div>
  2459. </blockquote>
  2460. <script async src="//www.instagram.com/embed.js"></script>
  2461. </div>
  2462. </div>
  2463. </div>
  2464. </div>
  2465. </div>
  2466. </section>
  2467. <div id="sec-adv3-container" class="container-fluid pb-3">
  2468. <div id="sec-adv3-card" class="row">
  2469. <div class="col-12 py-3 col-lg-4">
  2470. <a target="_blank" href="https://superrare.com/artwork-v2/cavity-25934"><img
  2471. style="object-fit: cover; border-radius: 10px;" class="img-fluid" src="./img/adv/adv3-1.webp"
  2472. alt=""> </a>
  2473. <p class="text-center fs-4 fw-bolder py-3">Cavity</p>
  2474. </div>
  2475. <div class="col-12 py-3 col-lg-4">
  2476. <a target="_blank" href="https://superrare.com/artwork-v2/paparazzi-princess-25976"><img
  2477. style="object-fit: cover; border-radius: 10px;" class="img-fluid" src="./img/adv/adv3-2.webp"
  2478. alt=""></a>
  2479. <p class="text-center fs-4 fw-bolder py-3">Paparazzi Princess</p>
  2480. </div>
  2481. <div class="col-12 py-3 col-lg-4">
  2482. <a target="_blank" href="https://superrare.com/artwork-v2/smoking-hero-25987"><img
  2483. style="object-fit: cover; border-radius: 10px;" class="img-fluid" src="./img/adv/adv3-3.webp"
  2484. alt=""></a>
  2485. <p class="text-center fs-4 fw-bolder py-3">Smoking Hero</p>
  2486. </div>
  2487. </div>
  2488. </div>
  2489. <!-- 熱門作品-手機板 -->
  2490. <section id="sec05-moblie">
  2491. <div id="sec05-moblie-container" class="container-fluid">
  2492. <h1 class="secn-title">熱門作品</h1>
  2493. <!-- <div id="tag">
  2494. <a href=""><button>Art</button></a>
  2495. <a href=""><button>Collectible</button></a>
  2496. <a href=""><button>GameItems</button></a>
  2497. <a href=""><button>Domains</button></a>
  2498. <a href=""><button>Templates</button></a>
  2499. </div> -->
  2500. <div id="sec05-moblie-slider" class="container-fluid " style="margin: 0; padding: 0;">
  2501. <div class="sec05-moblie-box">
  2502. <div class="card">
  2503. <blockquote class="instagram-media"
  2504. data-instgrm-permalink="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  2505. data-instgrm-version="13"
  2506. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2507. <div style="padding:16px;"> <a
  2508. href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  2509. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2510. target="_blank">
  2511. <div style=" display: flex; flex-direction: row; align-items: center;">
  2512. <div
  2513. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2514. </div>
  2515. <div
  2516. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2517. <div
  2518. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2519. </div>
  2520. <div
  2521. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2522. </div>
  2523. </div>
  2524. </div>
  2525. <div style="padding: 19% 0;"></div>
  2526. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2527. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2528. xmlns="https://www.w3.org/2000/svg"
  2529. xmlns:xlink="https://www.w3.org/1999/xlink">
  2530. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2531. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2532. <g>
  2533. <path
  2534. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2535. </path>
  2536. </g>
  2537. </g>
  2538. </g>
  2539. </svg></div>
  2540. <div style="padding-top: 8px;">
  2541. <div
  2542. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2543. 在 Instagram 查看這則貼文</div>
  2544. </div>
  2545. <div style="padding: 12.5% 0;"></div>
  2546. <div
  2547. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2548. <div>
  2549. <div
  2550. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2551. </div>
  2552. <div
  2553. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2554. </div>
  2555. <div
  2556. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2557. </div>
  2558. </div>
  2559. <div style="margin-left: 8px;">
  2560. <div
  2561. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2562. </div>
  2563. <div
  2564. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2565. </div>
  2566. </div>
  2567. <div style="margin-left: auto;">
  2568. <div
  2569. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2570. </div>
  2571. <div
  2572. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2573. </div>
  2574. <div
  2575. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2576. </div>
  2577. </div>
  2578. </div>
  2579. <div
  2580. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2581. <div
  2582. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2583. </div>
  2584. <div
  2585. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2586. </div>
  2587. </div>
  2588. </a>
  2589. <p
  2590. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2591. <a href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  2592. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2593. target="_blank">NFT(@nft)分享的貼文</a>
  2594. </p>
  2595. </div>
  2596. </blockquote>
  2597. <script async src="//www.instagram.com/embed.js"></script>
  2598. </div>
  2599. </div>
  2600. <div class="sec05-moblie-box col">
  2601. <div class="card">
  2602. <blockquote class="instagram-media"
  2603. data-instgrm-permalink="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  2604. data-instgrm-version="13"
  2605. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2606. <div style="padding:16px;"> <a
  2607. href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  2608. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2609. target="_blank">
  2610. <div style=" display: flex; flex-direction: row; align-items: center;">
  2611. <div
  2612. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2613. </div>
  2614. <div
  2615. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2616. <div
  2617. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2618. </div>
  2619. <div
  2620. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2621. </div>
  2622. </div>
  2623. </div>
  2624. <div style="padding: 19% 0;"></div>
  2625. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2626. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2627. xmlns="https://www.w3.org/2000/svg"
  2628. xmlns:xlink="https://www.w3.org/1999/xlink">
  2629. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2630. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2631. <g>
  2632. <path
  2633. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2634. </path>
  2635. </g>
  2636. </g>
  2637. </g>
  2638. </svg></div>
  2639. <div style="padding-top: 8px;">
  2640. <div
  2641. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2642. 在 Instagram 查看這則貼文</div>
  2643. </div>
  2644. <div style="padding: 12.5% 0;"></div>
  2645. <div
  2646. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2647. <div>
  2648. <div
  2649. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2650. </div>
  2651. <div
  2652. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2653. </div>
  2654. <div
  2655. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2656. </div>
  2657. </div>
  2658. <div style="margin-left: 8px;">
  2659. <div
  2660. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2661. </div>
  2662. <div
  2663. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2664. </div>
  2665. </div>
  2666. <div style="margin-left: auto;">
  2667. <div
  2668. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2669. </div>
  2670. <div
  2671. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2672. </div>
  2673. <div
  2674. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2675. </div>
  2676. </div>
  2677. </div>
  2678. <div
  2679. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2680. <div
  2681. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2682. </div>
  2683. <div
  2684. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2685. </div>
  2686. </div>
  2687. </a>
  2688. <p
  2689. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2690. <a href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  2691. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2692. target="_blank">Andreas Wannerstedt(@wannerstedt)分享的貼文</a>
  2693. </p>
  2694. </div>
  2695. </blockquote>
  2696. <script async src="//www.instagram.com/embed.js"></script>
  2697. </div>
  2698. </div>
  2699. <div class="sec05-moblie-box col">
  2700. <div class="card">
  2701. <blockquote class="instagram-media"
  2702. data-instgrm-permalink="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2703. data-instgrm-version="13"
  2704. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2705. <div style="padding:16px;"> <a
  2706. href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2707. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2708. target="_blank">
  2709. <div style=" display: flex; flex-direction: row; align-items: center;">
  2710. <div
  2711. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2712. </div>
  2713. <div
  2714. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2715. <div
  2716. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2717. </div>
  2718. <div
  2719. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2720. </div>
  2721. </div>
  2722. </div>
  2723. <div style="padding: 19% 0;"></div>
  2724. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2725. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2726. xmlns="https://www.w3.org/2000/svg"
  2727. xmlns:xlink="https://www.w3.org/1999/xlink">
  2728. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2729. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2730. <g>
  2731. <path
  2732. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2733. </path>
  2734. </g>
  2735. </g>
  2736. </g>
  2737. </svg></div>
  2738. <div style="padding-top: 8px;">
  2739. <div
  2740. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2741. 在 Instagram 查看這則貼文</div>
  2742. </div>
  2743. <div style="padding: 12.5% 0;"></div>
  2744. <div
  2745. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2746. <div>
  2747. <div
  2748. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2749. </div>
  2750. <div
  2751. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2752. </div>
  2753. <div
  2754. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2755. </div>
  2756. </div>
  2757. <div style="margin-left: 8px;">
  2758. <div
  2759. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2760. </div>
  2761. <div
  2762. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2763. </div>
  2764. </div>
  2765. <div style="margin-left: auto;">
  2766. <div
  2767. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2768. </div>
  2769. <div
  2770. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2771. </div>
  2772. <div
  2773. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2774. </div>
  2775. </div>
  2776. </div>
  2777. <div
  2778. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2779. <div
  2780. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2781. </div>
  2782. <div
  2783. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2784. </div>
  2785. </div>
  2786. </a>
  2787. <p
  2788. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2789. <a href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2790. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2791. target="_blank">Don(@visualdon)分享的貼文</a>
  2792. </p>
  2793. </div>
  2794. </blockquote>
  2795. <script async src="//www.instagram.com/embed.js"></script>
  2796. </div>
  2797. </div>
  2798. <div class="sec05-moblie-box col">
  2799. <div class="card">
  2800. <blockquote class="instagram-media"
  2801. data-instgrm-permalink="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2802. data-instgrm-version="13"
  2803. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2804. <div style="padding:16px;"> <a
  2805. href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2806. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2807. target="_blank">
  2808. <div style=" display: flex; flex-direction: row; align-items: center;">
  2809. <div
  2810. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2811. </div>
  2812. <div
  2813. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2814. <div
  2815. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2816. </div>
  2817. <div
  2818. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2819. </div>
  2820. </div>
  2821. </div>
  2822. <div style="padding: 19% 0;"></div>
  2823. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2824. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2825. xmlns="https://www.w3.org/2000/svg"
  2826. xmlns:xlink="https://www.w3.org/1999/xlink">
  2827. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2828. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2829. <g>
  2830. <path
  2831. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2832. </path>
  2833. </g>
  2834. </g>
  2835. </g>
  2836. </svg></div>
  2837. <div style="padding-top: 8px;">
  2838. <div
  2839. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2840. 在 Instagram 查看這則貼文</div>
  2841. </div>
  2842. <div style="padding: 12.5% 0;"></div>
  2843. <div
  2844. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2845. <div>
  2846. <div
  2847. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2848. </div>
  2849. <div
  2850. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2851. </div>
  2852. <div
  2853. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2854. </div>
  2855. </div>
  2856. <div style="margin-left: 8px;">
  2857. <div
  2858. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2859. </div>
  2860. <div
  2861. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2862. </div>
  2863. </div>
  2864. <div style="margin-left: auto;">
  2865. <div
  2866. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2867. </div>
  2868. <div
  2869. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2870. </div>
  2871. <div
  2872. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2873. </div>
  2874. </div>
  2875. </div>
  2876. <div
  2877. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2878. <div
  2879. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2880. </div>
  2881. <div
  2882. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2883. </div>
  2884. </div>
  2885. </a>
  2886. <p
  2887. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2888. <a href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2889. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2890. target="_blank">Jeff Cole(@cole)分享的貼文</a>
  2891. </p>
  2892. </div>
  2893. </blockquote>
  2894. <script async src="//www.instagram.com/embed.js"></script>
  2895. </div>
  2896. </div>
  2897. <div class="sec05-moblie-box col">
  2898. <div class="card">
  2899. <blockquote class="instagram-media"
  2900. data-instgrm-permalink="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2901. data-instgrm-version="13"
  2902. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2903. <div style="padding:16px;"> <a
  2904. href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2905. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2906. target="_blank">
  2907. <div style=" display: flex; flex-direction: row; align-items: center;">
  2908. <div
  2909. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2910. </div>
  2911. <div
  2912. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2913. <div
  2914. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2915. </div>
  2916. <div
  2917. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2918. </div>
  2919. </div>
  2920. </div>
  2921. <div style="padding: 19% 0;"></div>
  2922. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2923. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2924. xmlns="https://www.w3.org/2000/svg"
  2925. xmlns:xlink="https://www.w3.org/1999/xlink">
  2926. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2927. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2928. <g>
  2929. <path
  2930. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2931. </path>
  2932. </g>
  2933. </g>
  2934. </g>
  2935. </svg></div>
  2936. <div style="padding-top: 8px;">
  2937. <div
  2938. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2939. 在 Instagram 查看這則貼文</div>
  2940. </div>
  2941. <div style="padding: 12.5% 0;"></div>
  2942. <div
  2943. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2944. <div>
  2945. <div
  2946. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2947. </div>
  2948. <div
  2949. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2950. </div>
  2951. <div
  2952. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2953. </div>
  2954. </div>
  2955. <div style="margin-left: 8px;">
  2956. <div
  2957. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2958. </div>
  2959. <div
  2960. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2961. </div>
  2962. </div>
  2963. <div style="margin-left: auto;">
  2964. <div
  2965. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2966. </div>
  2967. <div
  2968. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2969. </div>
  2970. <div
  2971. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2972. </div>
  2973. </div>
  2974. </div>
  2975. <div
  2976. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2977. <div
  2978. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2979. </div>
  2980. <div
  2981. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2982. </div>
  2983. </div>
  2984. </a>
  2985. <p
  2986. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2987. <a href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2988. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2989. target="_blank">spaceclub(@spaceclub)分享的貼文</a>
  2990. </p>
  2991. </div>
  2992. </blockquote>
  2993. <script async src="//www.instagram.com/embed.js"></script>
  2994. </div>
  2995. </div>
  2996. <div class="sec05-moblie-box col">
  2997. <div class="card">
  2998. <blockquote class="instagram-media"
  2999. data-instgrm-permalink="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3000. data-instgrm-version="13"
  3001. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3002. <div style="padding:16px;"> <a
  3003. href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3004. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3005. target="_blank">
  3006. <div style=" display: flex; flex-direction: row; align-items: center;">
  3007. <div
  3008. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3009. </div>
  3010. <div
  3011. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3012. <div
  3013. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3014. </div>
  3015. <div
  3016. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3017. </div>
  3018. </div>
  3019. </div>
  3020. <div style="padding: 19% 0;"></div>
  3021. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3022. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3023. xmlns="https://www.w3.org/2000/svg"
  3024. xmlns:xlink="https://www.w3.org/1999/xlink">
  3025. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3026. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3027. <g>
  3028. <path
  3029. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3030. </path>
  3031. </g>
  3032. </g>
  3033. </g>
  3034. </svg></div>
  3035. <div style="padding-top: 8px;">
  3036. <div
  3037. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3038. 在 Instagram 查看這則貼文</div>
  3039. </div>
  3040. <div style="padding: 12.5% 0;"></div>
  3041. <div
  3042. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3043. <div>
  3044. <div
  3045. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3046. </div>
  3047. <div
  3048. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3049. </div>
  3050. <div
  3051. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3052. </div>
  3053. </div>
  3054. <div style="margin-left: 8px;">
  3055. <div
  3056. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3057. </div>
  3058. <div
  3059. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3060. </div>
  3061. </div>
  3062. <div style="margin-left: auto;">
  3063. <div
  3064. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3065. </div>
  3066. <div
  3067. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3068. </div>
  3069. <div
  3070. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3071. </div>
  3072. </div>
  3073. </div>
  3074. <div
  3075. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3076. <div
  3077. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3078. </div>
  3079. <div
  3080. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3081. </div>
  3082. </div>
  3083. </a>
  3084. <p
  3085. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3086. <a href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3087. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3088. target="_blank">NFT(@nft)分享的貼文</a>
  3089. </p>
  3090. </div>
  3091. </blockquote>
  3092. <script async src="//www.instagram.com/embed.js"></script>
  3093. </div>
  3094. </div>
  3095. <div class="sec05-moblie-box col">
  3096. <div class="card">
  3097. <blockquote class="instagram-media"
  3098. data-instgrm-permalink="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  3099. data-instgrm-version="13"
  3100. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3101. <div style="padding:16px;"> <a
  3102. href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  3103. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3104. target="_blank">
  3105. <div style=" display: flex; flex-direction: row; align-items: center;">
  3106. <div
  3107. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3108. </div>
  3109. <div
  3110. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3111. <div
  3112. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3113. </div>
  3114. <div
  3115. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3116. </div>
  3117. </div>
  3118. </div>
  3119. <div style="padding: 19% 0;"></div>
  3120. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3121. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3122. xmlns="https://www.w3.org/2000/svg"
  3123. xmlns:xlink="https://www.w3.org/1999/xlink">
  3124. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3125. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3126. <g>
  3127. <path
  3128. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3129. </path>
  3130. </g>
  3131. </g>
  3132. </g>
  3133. </svg></div>
  3134. <div style="padding-top: 8px;">
  3135. <div
  3136. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3137. 在 Instagram 查看這則貼文</div>
  3138. </div>
  3139. <div style="padding: 12.5% 0;"></div>
  3140. <div
  3141. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3142. <div>
  3143. <div
  3144. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3145. </div>
  3146. <div
  3147. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3148. </div>
  3149. <div
  3150. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3151. </div>
  3152. </div>
  3153. <div style="margin-left: 8px;">
  3154. <div
  3155. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3156. </div>
  3157. <div
  3158. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3159. </div>
  3160. </div>
  3161. <div style="margin-left: auto;">
  3162. <div
  3163. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3164. </div>
  3165. <div
  3166. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3167. </div>
  3168. <div
  3169. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3170. </div>
  3171. </div>
  3172. </div>
  3173. <div
  3174. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3175. <div
  3176. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3177. </div>
  3178. <div
  3179. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3180. </div>
  3181. </div>
  3182. </a>
  3183. <p
  3184. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3185. <a href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  3186. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3187. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  3188. </p>
  3189. </div>
  3190. </blockquote>
  3191. <script async src="//www.instagram.com/embed.js"></script>
  3192. </div>
  3193. </div>
  3194. <div class="sec05-moblie-box col">
  3195. <div class="card">
  3196. <blockquote class="instagram-media"
  3197. data-instgrm-permalink="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  3198. data-instgrm-version="13"
  3199. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3200. <div style="padding:16px;"> <a
  3201. href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  3202. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3203. target="_blank">
  3204. <div style=" display: flex; flex-direction: row; align-items: center;">
  3205. <div
  3206. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3207. </div>
  3208. <div
  3209. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3210. <div
  3211. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3212. </div>
  3213. <div
  3214. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3215. </div>
  3216. </div>
  3217. </div>
  3218. <div style="padding: 19% 0;"></div>
  3219. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3220. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3221. xmlns="https://www.w3.org/2000/svg"
  3222. xmlns:xlink="https://www.w3.org/1999/xlink">
  3223. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3224. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3225. <g>
  3226. <path
  3227. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3228. </path>
  3229. </g>
  3230. </g>
  3231. </g>
  3232. </svg></div>
  3233. <div style="padding-top: 8px;">
  3234. <div
  3235. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3236. 在 Instagram 查看這則貼文</div>
  3237. </div>
  3238. <div style="padding: 12.5% 0;"></div>
  3239. <div
  3240. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3241. <div>
  3242. <div
  3243. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3244. </div>
  3245. <div
  3246. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3247. </div>
  3248. <div
  3249. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3250. </div>
  3251. </div>
  3252. <div style="margin-left: 8px;">
  3253. <div
  3254. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3255. </div>
  3256. <div
  3257. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3258. </div>
  3259. </div>
  3260. <div style="margin-left: auto;">
  3261. <div
  3262. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3263. </div>
  3264. <div
  3265. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3266. </div>
  3267. <div
  3268. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3269. </div>
  3270. </div>
  3271. </div>
  3272. <div
  3273. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3274. <div
  3275. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3276. </div>
  3277. <div
  3278. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3279. </div>
  3280. </div>
  3281. </a>
  3282. <p
  3283. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3284. <a href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  3285. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3286. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  3287. </p>
  3288. </div>
  3289. </blockquote>
  3290. <script async src="//www.instagram.com/embed.js"></script>
  3291. </div>
  3292. </div>
  3293. <div class="sec05-moblie-box col">
  3294. <div class="card">
  3295. <blockquote class="instagram-media"
  3296. data-instgrm-permalink="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  3297. data-instgrm-version="13"
  3298. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3299. <div style="padding:16px;"> <a
  3300. href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  3301. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3302. target="_blank">
  3303. <div style=" display: flex; flex-direction: row; align-items: center;">
  3304. <div
  3305. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3306. </div>
  3307. <div
  3308. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3309. <div
  3310. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3311. </div>
  3312. <div
  3313. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3314. </div>
  3315. </div>
  3316. </div>
  3317. <div style="padding: 19% 0;"></div>
  3318. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3319. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3320. xmlns="https://www.w3.org/2000/svg"
  3321. xmlns:xlink="https://www.w3.org/1999/xlink">
  3322. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3323. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3324. <g>
  3325. <path
  3326. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3327. </path>
  3328. </g>
  3329. </g>
  3330. </g>
  3331. </svg></div>
  3332. <div style="padding-top: 8px;">
  3333. <div
  3334. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3335. 在 Instagram 查看這則貼文</div>
  3336. </div>
  3337. <div style="padding: 12.5% 0;"></div>
  3338. <div
  3339. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3340. <div>
  3341. <div
  3342. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3343. </div>
  3344. <div
  3345. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3346. </div>
  3347. <div
  3348. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3349. </div>
  3350. </div>
  3351. <div style="margin-left: 8px;">
  3352. <div
  3353. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3354. </div>
  3355. <div
  3356. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3357. </div>
  3358. </div>
  3359. <div style="margin-left: auto;">
  3360. <div
  3361. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3362. </div>
  3363. <div
  3364. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3365. </div>
  3366. <div
  3367. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3368. </div>
  3369. </div>
  3370. </div>
  3371. <div
  3372. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3373. <div
  3374. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3375. </div>
  3376. <div
  3377. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3378. </div>
  3379. </div>
  3380. </a>
  3381. <p
  3382. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3383. <a href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  3384. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3385. target="_blank">NFT ART 🎨(@nft__galaxy)分享的貼文</a>
  3386. </p>
  3387. </div>
  3388. </blockquote>
  3389. <script async src="//www.instagram.com/embed.js"></script>
  3390. </div>
  3391. </div>
  3392. <div class="sec05-moblie-box col">
  3393. <div class="card">
  3394. <blockquote class="instagram-media"
  3395. data-instgrm-permalink="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3396. data-instgrm-version="13"
  3397. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3398. <div style="padding:16px;"> <a
  3399. href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3400. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3401. target="_blank">
  3402. <div style=" display: flex; flex-direction: row; align-items: center;">
  3403. <div
  3404. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3405. </div>
  3406. <div
  3407. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3408. <div
  3409. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3410. </div>
  3411. <div
  3412. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3413. </div>
  3414. </div>
  3415. </div>
  3416. <div style="padding: 19% 0;"></div>
  3417. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3418. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3419. xmlns="https://www.w3.org/2000/svg"
  3420. xmlns:xlink="https://www.w3.org/1999/xlink">
  3421. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3422. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3423. <g>
  3424. <path
  3425. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3426. </path>
  3427. </g>
  3428. </g>
  3429. </g>
  3430. </svg></div>
  3431. <div style="padding-top: 8px;">
  3432. <div
  3433. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3434. 在 Instagram 查看這則貼文</div>
  3435. </div>
  3436. <div style="padding: 12.5% 0;"></div>
  3437. <div
  3438. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3439. <div>
  3440. <div
  3441. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3442. </div>
  3443. <div
  3444. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3445. </div>
  3446. <div
  3447. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3448. </div>
  3449. </div>
  3450. <div style="margin-left: 8px;">
  3451. <div
  3452. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3453. </div>
  3454. <div
  3455. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3456. </div>
  3457. </div>
  3458. <div style="margin-left: auto;">
  3459. <div
  3460. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3461. </div>
  3462. <div
  3463. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3464. </div>
  3465. <div
  3466. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3467. </div>
  3468. </div>
  3469. </div>
  3470. <div
  3471. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3472. <div
  3473. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3474. </div>
  3475. <div
  3476. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3477. </div>
  3478. </div>
  3479. </a>
  3480. <p
  3481. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3482. <a href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  3483. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3484. target="_blank">Yohann Schepacz - OYO(@yohannschepaczart)分享的貼文</a>
  3485. </p>
  3486. </div>
  3487. </blockquote>
  3488. <script async src="//www.instagram.com/embed.js"></script>
  3489. </div>
  3490. </div>
  3491. <div class="sec05-moblie-box col">
  3492. <div class="card">
  3493. <blockquote class="instagram-media"
  3494. data-instgrm-permalink="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  3495. data-instgrm-version="13"
  3496. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3497. <div style="padding:16px;"> <a
  3498. href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  3499. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3500. target="_blank">
  3501. <div style=" display: flex; flex-direction: row; align-items: center;">
  3502. <div
  3503. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3504. </div>
  3505. <div
  3506. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3507. <div
  3508. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3509. </div>
  3510. <div
  3511. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3512. </div>
  3513. </div>
  3514. </div>
  3515. <div style="padding: 19% 0;"></div>
  3516. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3517. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3518. xmlns="https://www.w3.org/2000/svg"
  3519. xmlns:xlink="https://www.w3.org/1999/xlink">
  3520. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3521. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3522. <g>
  3523. <path
  3524. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3525. </path>
  3526. </g>
  3527. </g>
  3528. </g>
  3529. </svg></div>
  3530. <div style="padding-top: 8px;">
  3531. <div
  3532. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3533. 在 Instagram 查看這則貼文</div>
  3534. </div>
  3535. <div style="padding: 12.5% 0;"></div>
  3536. <div
  3537. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3538. <div>
  3539. <div
  3540. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3541. </div>
  3542. <div
  3543. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3544. </div>
  3545. <div
  3546. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3547. </div>
  3548. </div>
  3549. <div style="margin-left: 8px;">
  3550. <div
  3551. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3552. </div>
  3553. <div
  3554. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3555. </div>
  3556. </div>
  3557. <div style="margin-left: auto;">
  3558. <div
  3559. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3560. </div>
  3561. <div
  3562. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3563. </div>
  3564. <div
  3565. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3566. </div>
  3567. </div>
  3568. </div>
  3569. <div
  3570. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3571. <div
  3572. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3573. </div>
  3574. <div
  3575. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3576. </div>
  3577. </div>
  3578. </a>
  3579. <p
  3580. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3581. <a href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  3582. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3583. target="_blank">NFT(@nft)分享的貼文</a>
  3584. </p>
  3585. </div>
  3586. </blockquote>
  3587. <script async src="//www.instagram.com/embed.js"></script>
  3588. </div>
  3589. </div>
  3590. <div class="sec05-moblie-box col">
  3591. <div class="card">
  3592. <blockquote class="instagram-media"
  3593. data-instgrm-permalink="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  3594. data-instgrm-version="13"
  3595. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  3596. <div style="padding:16px;"> <a
  3597. href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  3598. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3599. target="_blank">
  3600. <div style=" display: flex; flex-direction: row; align-items: center;">
  3601. <div
  3602. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3603. </div>
  3604. <div
  3605. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3606. <div
  3607. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3608. </div>
  3609. <div
  3610. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3611. </div>
  3612. </div>
  3613. </div>
  3614. <div style="padding: 19% 0;"></div>
  3615. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3616. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3617. xmlns="https://www.w3.org/2000/svg"
  3618. xmlns:xlink="https://www.w3.org/1999/xlink">
  3619. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3620. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3621. <g>
  3622. <path
  3623. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  3624. </path>
  3625. </g>
  3626. </g>
  3627. </g>
  3628. </svg></div>
  3629. <div style="padding-top: 8px;">
  3630. <div
  3631. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3632. 在 Instagram 查看這則貼文</div>
  3633. </div>
  3634. <div style="padding: 12.5% 0;"></div>
  3635. <div
  3636. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3637. <div>
  3638. <div
  3639. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3640. </div>
  3641. <div
  3642. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  3643. </div>
  3644. <div
  3645. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3646. </div>
  3647. </div>
  3648. <div style="margin-left: 8px;">
  3649. <div
  3650. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3651. </div>
  3652. <div
  3653. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  3654. </div>
  3655. </div>
  3656. <div style="margin-left: auto;">
  3657. <div
  3658. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3659. </div>
  3660. <div
  3661. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3662. </div>
  3663. <div
  3664. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3665. </div>
  3666. </div>
  3667. </div>
  3668. <div
  3669. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3670. <div
  3671. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3672. </div>
  3673. <div
  3674. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3675. </div>
  3676. </div>
  3677. </a>
  3678. <p
  3679. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  3680. <a href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  3681. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3682. target="_blank">NFT(@nft)分享的貼文</a>
  3683. </p>
  3684. </div>
  3685. </blockquote>
  3686. <script async src="//www.instagram.com/embed.js"></script>
  3687. </div>
  3688. </div>
  3689. </div>
  3690. </div>
  3691. <div class="sec05-button">
  3692. <div class="mouse_scroll">
  3693. <div class="testright">
  3694. <span class="m_scroll_arrows unu "></span>
  3695. <span class="m_scroll_arrows doi "></span>
  3696. <span class="m_scroll_arrows trei "></span>
  3697. </div>
  3698. <div class="mouse">
  3699. <div class="wheel"></div>
  3700. </div>
  3701. <div class="testleft">
  3702. <span class="m_scroll_arrows unu"></span>
  3703. <span class="m_scroll_arrows doi"></span>
  3704. <span class="m_scroll_arrows trei"></span>
  3705. </div>
  3706. </div>
  3707. </div>
  3708. </div>
  3709. </section>
  3710. <section class="adv01 py-5 bg-light my-5">
  3711. <div class="adv01-1 container-fluid text-center">
  3712. <a target="_blank" href="https://tw.puma.com/v2/official/SalePageCategory/351855?sortMode=Curator"><img
  3713. class="img-fluid" src="./img/adv/adv2-2.webp" alt=""></a>
  3714. </div>
  3715. </section>
  3716. <!-- NFT資訊 -->
  3717. <section id="sec06" class="">
  3718. <div class="container-fluid">
  3719. <div class="sec06-title">
  3720. <h1 class="secn-title">NFT資訊</h1>
  3721. <hr class="line">
  3722. </div>
  3723. <div class="container-fluid">
  3724. <div id="sec06-container" class="row">
  3725. <div class="col-lg-3 py-3">
  3726. <div class="card">
  3727. <a target="_blank" href="https://www.facebook.com/nftboard/posts/121040216887680"><img
  3728. src="./img/sec06/sec06-9.jpg" class="card-img-top" alt="..."></a>
  3729. <div class="card-body">
  3730. <a target="_blank" href="https://www.facebook.com/nftboard/posts/121040216887680">
  3731. <h5 class="card-title">一起在虛擬土地上建設自己的新身分</h5>
  3732. </a>
  3733. <p class="card-text">電腦遊戲早已變成了虛擬空間,您可以在其中構建自己的世界。在本文中,我們將討論 Decentraland
  3734. 虛擬土地上的建設、參與其中的公司以及構建這一切的團隊。</p>
  3735. </div>
  3736. </div>
  3737. </div>
  3738. <div class="col-lg-3 py-3">
  3739. <div class="card">
  3740. <a target="_blank" href="https://www.facebook.com/nftboard/posts/105110191814016">
  3741. <img src="./img/sec06/sec06-01.webp" class="card-img-top" alt="...">
  3742. </a>
  3743. <div class="card-body">
  3744. <a target="_blank" href="https://www.facebook.com/nftboard/posts/105110191814016">
  3745. <h5 class="card-title">誰要買這個啦!推特執行長賣推文「加密熱潮」新標的,NFT是什麼?</h5>
  3746. </a>
  3747. <p class="card-text">如果果你還沒聽過NFT,應該也快聽說了。NFT正在攻佔網路,並被認為是區塊鏈技術 (blockchain technology)
  3748. 的最佳應用實例。</p>
  3749. </div>
  3750. </div>
  3751. </div>
  3752. <div class="col-lg-3 py-3">
  3753. <div class="card">
  3754. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115143380810697">
  3755. <img src="./img/sec06/sec06-02.webp" class="card-img-top" alt="...">
  3756. </a>
  3757. <div class="card-body">
  3758. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115143380810697">
  3759. <h5 class="card-title">聊一聊NFT應用場景~門票/體育、活動門票系列</h5>
  3760. </a>
  3761. <p class="card-text">目前,門票偽造和大量囤票是一個亟需解決的大問題。NFT
  3762. 在分佈式賬本上保存的記錄具有不可更改性,使得票據可以在區塊鏈上進行獨立驗證和認證,避免了作弊方法。</p>
  3763. </div>
  3764. </div>
  3765. </div>
  3766. <div class="col-lg-3 py-3">
  3767. <div class="card">
  3768. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115144517477250">
  3769. <img src="./img/sec06/sec06-03.png" class="card-img-top" alt="...">
  3770. </a>
  3771. <div class="card-body">
  3772. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115144517477250">
  3773. <h5 class="card-title">聊一聊NFT應用場景~紀錄/身分驗證、實體資產和文件記錄</h5>
  3774. </a>
  3775. <p class="card-text">NFT
  3776. 可以將現實世界中的資產,如房產、股票或文件,如資質、執照、病歷、出生和死亡證明等,進行代幣化。NFT也可以應用於身份認證。提供完整記錄。</p>
  3777. </div>
  3778. </div>
  3779. </div>
  3780. <div class="col-lg-3 py-3">
  3781. <div class="card">
  3782. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115141257477576">
  3783. <img src="./img/sec06/sec06-04.webp" class="card-img-top" alt="...">
  3784. </a>
  3785. <div class="card-body">
  3786. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115141257477576">
  3787. <h5 class="card-title">聊一聊NFT應用場景~遊戲/藝術</h5>
  3788. </a>
  3789. <p class="card-text">NFT 主要應用場景之一就是遊戲。基於區塊鏈技術的NFT
  3790. 能夠記錄玩家在遊戲內的狀態和成就,保存遊戲中獲得的物品清單,如武器、電源、車輛、角色等。</p>
  3791. </div>
  3792. </div>
  3793. </div>
  3794. <div class="col-lg-3 py-3">
  3795. <div class="card">
  3796. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115141780810857">
  3797. <img src="./img/sec06/sec06-05.png" class="card-img-top" alt="...">
  3798. </a>
  3799. <div class="card-body">
  3800. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115141780810857">
  3801. <h5 class="card-title">聊一聊NFT應用場景~音樂/虛擬世界</h5>
  3802. </a>
  3803. <p class="card-text">NFT 市場有望為音樂迷們打開虛擬收藏品的世界。在K-pop 領域,許多歌迷已經接受了NFT
  3804. 收藏品這種形式——獨立發行的專輯備受追捧。NFT
  3805. 另一個用例是創建虛擬世界。</p>
  3806. </div>
  3807. </div>
  3808. </div>
  3809. <div class="col-lg-3 py-3">
  3810. <div class="card">
  3811. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115142517477450">
  3812. <img src="./img/sec06/sec06-06.png" class="card-img-top" alt="...">
  3813. </a>
  3814. <div class="card-body">
  3815. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115142517477450">
  3816. <h5 class="card-title">聊一聊NFT應用場景~域名/技能</h5>
  3817. </a>
  3818. <p class="card-text">NFT 正是線上與線下對象銜接過程中真正缺失的環節,未來NFT
  3819. 不僅會改變藝術,還將改變商業、金融、社會和文化。對於藝術和知識產權來說,免經審查的NFT 是一種寶貴財富和發展平台。</p>
  3820. </div>
  3821. </div>
  3822. </div>
  3823. <div class="col-lg-3 py-3">
  3824. <div class="card">
  3825. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115135607478141">
  3826. <img src="./img/sec06/sec06-07.png" class="card-img-top" alt="...">
  3827. </a>
  3828. <div class="card-body">
  3829. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115135607478141">
  3830. <h5 class="card-title">當下火熱的NFT有沒投資價值?一般人如何通過參與NFT獲得收益?</h5>
  3831. </a>
  3832. <p class="card-text">
  3833. NFT就是去中心化金融Defi世界當中的【藝術品投資收藏市場】,但不同於傳統的藝術品投資,經過互聯網加持下的文化產品已經不再僅僅局限於收藏實體的藝術品。</p>
  3834. </div>
  3835. </div>
  3836. </div>
  3837. <div class="col-lg-3 py-3">
  3838. <div class="card">
  3839. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115144110810624">
  3840. <img src="./img/sec06/sec06-08.jpg" class="card-img-top" alt="...">
  3841. </a>
  3842. <div class="card-body">
  3843. <a target="_blank" href="https://www.facebook.com/nftboard/posts/115144110810624">
  3844. <h5 class="card-title">聊一聊NFT應用場景時尚/娛樂</h5>
  3845. </a>
  3846. <p class="card-text">與時尚行業相關的NFT 也可以在以太坊區塊鍊網絡上投入使用,推出項目。現在,越來越多的NFT
  3847. 項目與全球的時尚設計師進行合作,為他們提供知識產權保護。</p>
  3848. </div>
  3849. </div>
  3850. </div>
  3851. </div>
  3852. <div class="sec06-button">
  3853. <div class="mouse_scroll">
  3854. <div class="testright">
  3855. <span class="m_scroll_arrows unu "></span>
  3856. <span class="m_scroll_arrows doi "></span>
  3857. <span class="m_scroll_arrows trei "></span>
  3858. </div>
  3859. <div class="mouse">
  3860. <div class="wheel"></div>
  3861. </div>
  3862. <div class="testleft">
  3863. <span class="m_scroll_arrows unu"></span>
  3864. <span class="m_scroll_arrows doi"></span>
  3865. <span class="m_scroll_arrows trei"></span>
  3866. </div>
  3867. </div>
  3868. </div>
  3869. </div>
  3870. </div>
  3871. </section>
  3872. <!--sec07 table -電腦版 -->
  3873. <section id="sec07">
  3874. <a style="text-decoration: none;" target="_blank" href="./atricle.html">
  3875. <div class="NFT-Collections-Sales-Volume">
  3876. <h1>NFT COLLECTIONS SALES VOLUME</h1>
  3877. </div>
  3878. </a>
  3879. <div class="container-fluid">
  3880. <table id="mytab" class="table">
  3881. <thead class="llll">
  3882. <tr class="small">
  3883. <th scope="col">#</th>
  3884. <th scope="col">Name</th>
  3885. <th scope="col">Assets</th>
  3886. <th scope="col">Collection<br>Net Worth</th>
  3887. <th scope="col">Volume(7d)</th>
  3888. <th scope="col">Sales(7d)</th>
  3889. <th scope="col">Volume(All Time)</th>
  3890. <th scope="col">Sales(All Time)</th>
  3891. <th scope="col">Owners</th>
  3892. </tr>
  3893. </thead>
  3894. <tbody id="pc">
  3895. </tbody>
  3896. </table>
  3897. <div class="sec07-table-button">
  3898. <button class="showdata data-button">完整數據</button>
  3899. </div>
  3900. </div>
  3901. </section>
  3902. <!-- sec07 table -手機板標題 -->
  3903. <section id="sec07-moblir-title">
  3904. <div id="sec07-container" class="container-fluid">
  3905. <h1>NFT</h1>
  3906. <h1>COLLECTIONS</h1>
  3907. <h1>SALES VOLUME</h1>
  3908. </div>
  3909. </section>
  3910. <!-- sec07 table -手機板 -->
  3911. <section id="sec07-moblie">
  3912. <div class="container-fluid">
  3913. <table id="mytab" class="table">
  3914. <thead class="llll">
  3915. <tr>
  3916. <th scope="col">#</th>
  3917. <th scope="col">Name</th>
  3918. <th scope="col">Sales(7d)</th>
  3919. </tr>
  3920. </thead>
  3921. <tbody id="mobile">
  3922. </tbody>
  3923. </table>
  3924. <div class="sec07-table-button">
  3925. <button class="showdata data-button">完整數據</button>
  3926. </div>
  3927. </div>
  3928. </section>
  3929. <!-- 合作夥伴 -->
  3930. <section id="sec08">
  3931. <div id="sec08-container-box">
  3932. <div id="sec08-container" class="container-fluid" style="padding: 0;">
  3933. <div id="sec08-title">
  3934. <div class="row">
  3935. <div class="col-6 col-lg-3">
  3936. <h1 class="secn-title">合作夥伴</h1>
  3937. </div>
  3938. <div class="col-6 col-lg-9">
  3939. <div id="OUR-PARTNER">
  3940. <h5>OUR PARTNER</h5>
  3941. </div>
  3942. </div>
  3943. </div>
  3944. </div>
  3945. <div class="card">
  3946. <div id="sec08-slider" class="row">
  3947. <div class="col-3"><a target="_blank" href=""><img class="img-fluid"
  3948. src="./img/sec08/sec06-8.png" alt=""></a>
  3949. </div>
  3950. <div class="col-3"><a target="_blank" href="https://www.facebook.com/ARK.TPE/"><img
  3951. class="img-fluid" src="./img/sec08/sec06-02.png" alt=""></a>
  3952. </div>
  3953. <div class="col-3"><a target="_blank" href="https://www.chain.tw/"><img class="img-fluid"
  3954. src="./img/sec08/sec06-04.png" alt=""></a>
  3955. </div>
  3956. <div class="col-3 d-flex align-items-center justfy-content-center"><a target="_blank"
  3957. href="https://www.facebook.com/Shengeng.Foundation/"><img class="img-fluid"
  3958. src="./img/sec08/sec06-05.png" alt=""></a></div>
  3959. <div class="col-3"><a target="_blank" href="https://www.ampaimusic.com/"><img class="img-fluid"
  3960. src="./img/sec08/sec06-01-removebg-preview.png" alt=""></a>
  3961. </div>
  3962. <div class="col-3"><a target="_blank"
  3963. href="https://www.oursong.com/party/vbloqxgl?redeem_code=XJBONRDL"><img
  3964. class="img-fluid" src="./img/sec08/oursong-removebg-preview.png" alt=""></a></div>
  3965. <div class="col-3"><a target="_blank" href="https://opentalk.center/"><img
  3966. class="sec08-1 img-fluid" src="./img/sec08/logo01_jpg.jpg" alt=""></a></div>
  3967. <div class="col-3 d-flex align-items-center justfy-content-center"><a target="_blank"
  3968. href="http://www.choozmo.com/"><img class="img-fluid" src="./img/choozmo.png"
  3969. alt=""></a></div>
  3970. </div>
  3971. </div>
  3972. </div>
  3973. </div>
  3974. </section>
  3975. <!-- 交易平台 -->
  3976. <section id="sec09">
  3977. <div id="sec09-container-box">
  3978. <div id="sec09-container" class="container-fluid" style="padding: 0;">
  3979. <div id="sec09-title">
  3980. <div class="row">
  3981. <div class="col-6 col-lg-3">
  3982. <h1 class="secn-title">交易平台</h1>
  3983. </div>
  3984. <div class="col-6 col-lg-9">
  3985. <div id="TRADING">
  3986. <h5>TRADING</h5>
  3987. <h5>PLATFORM</h5>
  3988. </div>
  3989. </div>
  3990. </div>
  3991. </div>
  3992. <div class="card">
  3993. <div class="row">
  3994. <div class="sec09-1 col-3 py-3"><a target="_blank" href="https://mintable.app/browse"><img
  3995. class="img-fluid" src="./img/sec09/sec09-adv-1.jpeg" alt=""></a></div>
  3996. <div class="col-3 py-3"><a target="_blank" href="https://opensea.io/"><img class="img-fluid"
  3997. src="./img/sec09/sec09-adv-2.png" alt=""></a></div>
  3998. <div class="col-3 py-3"><a target="_blank" href="https://www.binance.com/zh-TW/nft"><img
  3999. class="img-fluid" src="./img/sec09/sec09-adv-3-removebg-preview.png" alt=""></a>
  4000. </div>
  4001. <div class="sec09-1 col-3 py-3"><a target="_blank" href="https://mintable.app/browse"><img
  4002. class="img-fluid" src="./img/sec09/aec09-adv-4rev.png" alt=""></a></div>
  4003. <div class="sec09-1 col-3 py-3"><a target="_blank" href="https://makersplace.com/"><img
  4004. class="img-fluid" src="./img/sec09/sec09-5.png" alt=""></a></div>
  4005. <div class="col-3 py-3"><a target="_blank" href="https://knownorigin.io/"><img class="img-fluid"
  4006. src="./img/sec09/sec09-6.webp" alt=""></a></div>
  4007. <div style="text-align: center;" class="col-3 py-3"><a target="_blank"
  4008. href="https://zora.co/"><img class="sec09-7 img-fluid" src="./img/sec09/sec09-7.webp"
  4009. alt=""></a></div>
  4010. <div class="sec09-1 col-3 py-3"><a target="_blank" href=" https://superrare.com/"><img
  4011. class="img-fluid" src="./img/sec09/sec09-8-removebg-preview.png" alt=""></a></div>
  4012. </div>
  4013. </div>
  4014. </div>
  4015. </div>
  4016. </section>
  4017. <!-- footer -->
  4018. <footer id="footer" class="container-fluid" style="padding:0;margin:0">
  4019. <div class="text" style="padding-right:0;">
  4020. <a target="_blank" href="mailto:nftboard.info@gmail.com">
  4021. <h2>客服信箱:nftboard.info@gmail.com</h2>
  4022. </a>
  4023. <h2>公司名稱:微生活知識科技公司</h2>
  4024. <a target="_blank" href="https://www.facebook.com/nftboard">
  4025. <img src="./img/facebook (2).png" alt=""></a>
  4026. <a target="_blank" href="https://www.instagram.com/nftboard.info/"><img src="./img/instagram.png"
  4027. alt=""></a>
  4028. <p>NFTBoard &copy; All Rights Reserved.</p>
  4029. </div>
  4030. </footer>
  4031. <!-- <div style=" color:#000; font-size: 30px; height: 200px;" id="jsontest"></div> -->
  4032. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
  4033. integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
  4034. crossorigin="anonymous"></script>
  4035. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
  4036. integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
  4037. crossorigin="anonymous"></script>
  4038. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  4039. <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
  4040. <script src="./goto.js"></script>
  4041. <script src="./node_modules/jquery-touchswipe/jquery.touchSwipe.min.js"></script>
  4042. <script src="./node_modules/jquery-touchswipe/jquery.touchSwipe.js"></script>
  4043. <script>
  4044. $(document).ready(function () {
  4045. function get_data(limit = 5) {
  4046. var mobile_temp = '';
  4047. var pc_temp = '';
  4048. $.get('https://nftboard.info:8001/showdata/' + limit, function (r) {
  4049. console.log(r); // test
  4050. for (var i = 0; i < limit; i++) {
  4051. mobile_temp += ' \
  4052. <tr> \
  4053. <th scope="row">' + r[i].rank + '</th> \
  4054. <td><a href="' + r[i].website + '" target="_blank" style="text-decoration: none;color:black;"><img class="me-2 img-fluid" src="' + r[i].logo + '" alt="' + r[i].name + '">' + r[i].name + '</a></td> \
  4055. <td>' + r[i].sales_7d + '</td> \
  4056. </tr>';
  4057. pc_temp += ' \
  4058. <tr class="small"> \
  4059. <th scope="row">' + r[i].rank + '</th> \
  4060. <td><a href="' + r[i].website + '" target="_blank" style="text-decoration: none;color:black;"><img class="me-2" src="' + r[i].logo + '" alt="' + r[i].name + '" style="height:40px;width:auto;">' + r[i].name + '</a></td> \
  4061. <td>' + r[i].assets + '</td> \
  4062. <td>' + r[i].collection_net_worth + '</td> \
  4063. <td>' + r[i].volume_7d + '</td> \
  4064. <td>' + r[i].sales_7d + '</td> \
  4065. <td>' + r[i].volume_all_time + '</td> \
  4066. <td>' + r[i].sales_all_time + '</td> \
  4067. <td>' + r[i].owners + '</td> \
  4068. </tr>';
  4069. }
  4070. $('#mobile').html(mobile_temp);
  4071. $('#pc').html(pc_temp);
  4072. });
  4073. }
  4074. get_data();
  4075. // 完整數據
  4076. $('.showdata').click(function () {
  4077. get_data(80);
  4078. });
  4079. });
  4080. </script>
  4081. <!-- sec01-viedeo -->
  4082. <!-- sec01news -->
  4083. <script>
  4084. $(document).ready(function () {
  4085. $.ajax({
  4086. method: "GET",
  4087. url: "NFTContent.json",
  4088. dataType: "json",
  4089. })
  4090. .done(function (msg) {
  4091. var sec01News = '';
  4092. console.log(msg);
  4093. const limit = 6;
  4094. for (var i = 0; i < limit; i++) {
  4095. var numb = i + 1;
  4096. sec01News += ' \
  4097. <div class="NEWSCard card col-lg-6"> \
  4098. <a class="text-center" href="' + msg[i].website + '" " target="_blank"><img class="img-fluid" src="' + msg[i].newsimg + '" alt=""></a> \
  4099. <div class="row py-3"> \
  4100. <div class="col-2 text-center"> \
  4101. <h1>'+ numb + '</h1> \
  4102. </div> \
  4103. <div class="col-10 px-0"> \
  4104. <a href="' + msg[i].website + '" " target="_blank"> \
  4105. <h5 style=" font-weight: 900;">'+ msg[i].newstext1 + '</h5> \
  4106. </a> \
  4107. <p class="NEWtext">'+ msg[i].newstext2 + '</p> \
  4108. </div> \
  4109. </div> \
  4110. </div>';
  4111. }
  4112. $(function () {
  4113. $(".NEWtext").each(function () {
  4114. var len = $(this).text().length; //當前HTML物件text的長度
  4115. if (len > 100) {
  4116. var str = "";
  4117. str = $(this).text().substring(0, 100) + "......"; //使用字串擷取,獲取前30個字元,多餘的字元使用“......”代替
  4118. $(this).html(str); //將替換的值賦值給當前物件
  4119. }
  4120. });
  4121. });
  4122. $('#sec01-container-card').html(sec01News);
  4123. // var test = msg[0].newstext1;
  4124. // $('#jsontest').append(test);
  4125. });
  4126. });
  4127. </script>
  4128. <!-- 作品集區域 -->
  4129. <script>
  4130. $(document).ready(function () {
  4131. $.ajax({
  4132. method: "GET",
  4133. url: "work-box.json",
  4134. dataType: "json",
  4135. })
  4136. .done(function (msg) {
  4137. var secwork = '';
  4138. console.log(msg);
  4139. const limit = 7;
  4140. for (var i = 0; i < limit; i++) {
  4141. secwork += ' \
  4142. <div class="work-box col-12 col-lg-4 p-3 h-100 d-inline-block">\
  4143. <div class="card">\
  4144. <a href="' + msg[i].website + '" " target="_blank"><img class="img-fluid" src="' + msg[i].workimg + '" alt=""></a> \
  4145. <div class="card-body">\
  4146. <p style="font-weight: 900; font-size: 20px; ">'+ msg[i].worktext1 + '</p> \
  4147. <p>'+ msg[i].worktext2 + '</p> \
  4148. </div> \
  4149. </div> \
  4150. </div>';
  4151. }
  4152. $('#sec-work-box').html(secwork);
  4153. $('#sec-work-box').slick({
  4154. arrows: false,
  4155. slidesToShow: 3,
  4156. slidesToScroll: 1,
  4157. infinite: true,
  4158. dots: true,
  4159. responsive: [
  4160. {
  4161. breakpoint: 600, // RWD在1024寬度時切換顯示數量
  4162. settings: {
  4163. arrows: false,
  4164. slidesToShow: 1, //一次顯示3個
  4165. slidesToScroll: 1,//切換下一頁時移動3個
  4166. infinite: true,
  4167. }
  4168. },
  4169. ]
  4170. });
  4171. // var test = msg[0].newstext1;
  4172. // $('#jsontest').append(test);
  4173. });
  4174. });
  4175. </script>
  4176. </body>
  4177. </html>