index.html 356 KB

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