index.html 348 KB

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