index.html 344 KB

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