index.html 352 KB

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