index.html 356 KB

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