index.html 352 KB

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