index.html 360 KB

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