index.html 326 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486
  1. <!DOCTYPE html>
  2. <html lang="en">
  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. <title>NFTBoard</title>
  8. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
  9. integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
  10. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
  11. <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
  12. <link rel="stylesheet" href="./style.css">
  13. </head>
  14. <body id="top">
  15. <script async defer crossorigin="anonymous"
  16. src="https://connect.facebook.net/zh_TW/sdk.js#xfbml=1&version=v11.0&appId=111118874418490&autoLogAppEvents=1"
  17. nonce="HfYf9wQz"></script>
  18. <!-- 主選單 -->
  19. <section id="Navigation" class="container-fluid">
  20. <div id="nav" class="row">
  21. <div id="logo" class=" col-md-2 col-lg-2">
  22. <a href=""> <img src="./img/LOGO.png" alt=""></a>
  23. </div>
  24. <div id="link" class="col-md-10 col-lg-10">
  25. <a href="">相關新聞</a>
  26. <a href="">TOP NFT ARTIST</a>
  27. <a href="">洞察報告</a>
  28. <a href="">熱門作品</a>
  29. <a href="">NFT資訊</a>
  30. <a href="">NFT趨勢數據</a>
  31. <a href="">聯絡我們</a>
  32. </div>
  33. <img id="menu-btn1" src="./img/menu.png" alt="">
  34. </div>
  35. </section>
  36. <!-- 手機板行動選單 -->
  37. <div id="menu-box" class="container-fluid" style="padding:0;margin:0 ">
  38. <div id="menu-box2">
  39. <div style="text-align: right;">
  40. <img class="close" src="./img/close.png" alt="">
  41. </div>
  42. <a class="link" data-gt-target="#sec01 " data-gt-duration="500"
  43. data-gt-offset="" style="padding-top: 3vw;">相關新聞</a>
  44. <hr>
  45. <a class="link" data-gt-target="#sec02-moblie" data-gt-duration="800"
  46. data-gt-offset="60">TOP NFT ARTIST</a>
  47. <hr>
  48. <a class="link" data-gt-target="#sec04-moblie" data-gt-duration="500"
  49. data-gt-offset="60">洞察報告</a>
  50. <hr>
  51. <a class="link" data-gt-target="#sec05-moblie " data-gt-duration="500"
  52. data-gt-offset="60">熱門作品</a>
  53. <hr>
  54. <a class="link" data-gt-target="#sec06" data-gt-duration="500"
  55. data-gt-offset="60">NFT資訊</a>
  56. <hr>
  57. <a class="link" data-gt-target="#sec07-moblir-title" data-gt-duration="500"
  58. data-gt-offset="50">NFT趨勢數據</a>
  59. <hr>
  60. <a class="link" data-gt-target="#information-mobile" data-gt-duration="500"
  61. data-gt-offset="">聯絡我們</a>
  62. <hr>
  63. </div>
  64. </div>
  65. <!-- 主視覺 -->
  66. <section id="banner" class="container-fluid" style="margin: 0; padding: 0;">
  67. <div id="banner-container">
  68. <div class="youtube " >
  69. <div class="row">
  70. <div id="youtube-text" class="col-12 order-2 col-lg-4 order-lg-1">
  71. <h1 style="text-align: left;">依照選舉結果變化的數位收藏品(NFT)?</h1>
  72. <hr>
  73. <p>去年10月美國邁阿密藝術收藏家羅德里格斯福瑞爾(Pablo Rodriguez-Fraile)以近 6 萬 7000 美元(約新台幣 187萬元)代價,買下數位藝術家 Beeple 的一件影片作品。</p>
  74. <p>兩幅畫正在美國總統拜登與川普在選舉前進行拍賣,川普的選舉結果決定了畫家這幅畫的最終呈現。</p>
  75. <a target="https://www.abmedia.io/dynamic-nft-to-change-via-election-result
  76. https://twitter.com/i/status/1322273227977203713
  77. " href="https://www.abmedia.io/dynamic-nft-to-change-via-election-result
  78. https://twitter.com/i/status/1322273227977203713
  79. "><button class="learn-more">LearnMore</button> </a>
  80. </div>
  81. <div class="col-12 order-1 col-lg-8 order-lg-2">
  82. <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed//qj0_2TgJLtY' frameborder='0' allowfullscreen></iframe></div>
  83. </div>
  84. </div>
  85. </div>
  86. <h1>歡迎訂閱掌握最新活動資訊</h1>
  87. <!-- 電腦版按鈕 -->
  88. <form class="contact-form-destop">
  89. <input type="email" name="email" id="email" placeholder="請在此輸入email"><input class="btn" type="submit"
  90. value="立即訂閱">
  91. </form>
  92. <!-- 手機板按鈕 -->
  93. <form class="contact-form-mobile">
  94. <div style="text-align: center;">
  95. <input type="email" id="email-moblie" placeholder="請在此輸入email"><input id="email-arrow" type="submit"
  96. value="">
  97. </div>
  98. </form>
  99. </div>
  100. </section>
  101. <!-- sec01 news -->
  102. <section id="sec01" class="container-fluid" style="padding:5vw 0;">
  103. <div class="NEWS">
  104. <h1>NEWS</h1>
  105. </div>
  106. <div id="sec01-container" class="container-fluid">
  107. <div id="sec01-container-card" class="row">
  108. <div class="card col-lg-6">
  109. <img src="https://storage.googleapis.com/image.blocktempo.com/2021/06/f3fd701e-beec-413f-982d-4a0c3e5b425c-1140x570.png" alt="">
  110. <div class="row">
  111. <div class="col-2">
  112. <h1>1</h1>
  113. </div>
  114. <div class="col-10">
  115. <a target="https://www.blocktempo.com/binance-nft-everything-you-need-to-know-about-the-june-24-launch-2/" href="https://www.blocktempo.com/binance-nft-everything-you-need-to-know-about-the-june-24-launch-2/"><p class="sec01-title">Binance NFT 市場上線!致敬藝術家創世紀拍賣、盲盒活動,平台首日驚喜不斷</p></a>
  116. <p>就是幣安Binance NFT平台橫空出世,引起了全球大漣漪,圈起了無數熱衷藝術與數位創作者的突進!</p>
  117. </div>
  118. </div>
  119. </div>
  120. <div class="card col-lg-6">
  121. <img src="./img/sec01/sec01-img02webp.webp" alt="">
  122. <div class="row">
  123. <div class="col-2">
  124. <h1>2</h1>
  125. </div>
  126. <div class="col-10">
  127. <a target="https://www.facebook.com/nftboard/posts/115134340811601" href="https://www.facebook.com/nftboard/posts/115134340811601"><p class="sec01-title">NFT的誕生基於2017年以太坊中一個叫做CryptoPunks的像素頭像項目</p></a>
  128. <p>這些像素頭像總量上限為1萬,任何兩個人物都不能相同,擁有以太坊錢包的人都可以免費領取,領完可以放到二級市場交易。</p>
  129. </div>
  130. </div>
  131. </div>
  132. <div class="card col-lg-6">
  133. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQFRPd2ASq15cuhX&w=584&h=305&url=https%3A%2F%2Fimg.chainnews.com%2Fupload%2Fcover%2F9016370500224ebbcdf7943b39add0f4.jpg-large&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQEexe9vdLe57p_Z" alt="">
  134. <div class="row">
  135. <div class="col-2">
  136. <h1>3</h1>
  137. </div>
  138. <div class="col-10">
  139. <a target="https://www.chainnews.com/zh-hant/articles/776491954921.htm" href="https://www.chainnews.com/zh-hant/articles/776491954921.htm"><p class="sec01-title">盤點︱你不知道的 NFT 交易量排行榜前 10 名</p></a>
  140. <p>根據 NonFungible 的排名,在 120 家上榜公司中,按歷史銷量排名前 10 位的公司如下......</p>
  141. </div>
  142. </div>
  143. </div>
  144. <div class="card col-lg-6">
  145. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/201138769_116652273993141_3905296953708787561_n.jpg?_nc_cat=108&ccb=1-3&_nc_sid=730e14&_nc_ohc=pzjeWoR6-TEAX-MmeEg&_nc_ht=scontent.ftpe13-2.fna&oh=5a722d725f647e8992882de6143d8cf8&oe=60E30FCC" alt="">
  146. <div class="row">
  147. <div class="col-2">
  148. <h1>4</h1>
  149. </div>
  150. <div class="col-10">
  151. <a target="https://www.facebook.com/100259488965753/posts/116652300659805/?d=n" href="https://www.facebook.com/100259488965753/posts/116652300659805/?d=n"><p class="sec01-title">NFT 大獎!Surprise!原來我們公司出現大獎Black BNB得主!</p></a>
  152. <p>是我們 #NFTBoard 的美女PM - Maggie!! NFTBoard公司位在 #N24台北方舟 研擬幣安搶購計畫.....</p>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. </div>
  158. </section>
  159. <!-- sec02-Top-box- 電腦版-->
  160. <section id="sec02">
  161. <div id="sec02-container" class="container-fluid">
  162. <div id="sec02-top-box" class="row">
  163. <div class="col-lg-3">
  164. <h1>TOP SELLERS</h1>
  165. <h1>THIS WEEK</h1>
  166. </div>
  167. <div id="sec02-content" class="col-lg-9">
  168. <div class="row">
  169. <div class="sec02-box1 col-lg-2">
  170. <img src="./img/sec02/top1webp.webp" alt="">
  171. <div class="sec02-top-text"><span>1</span>Beeple</div>
  172. <div>(邁克•溫克爾曼)</div>
  173. </div>
  174. <div class="sec02-box1 col-lg-2">
  175. <img src="./img/sec02/top2webp.webp" alt="">
  176. <div class="sec02-top-text"><span>2</span>Trevorjonesart</div>
  177. <div>(特雷弗瓊斯)</div>
  178. </div>
  179. <div class="sec02-box1 col-lg-2">
  180. <img src="./img/sec02/top3webp.webp" alt="">
  181. <div class="sec02-top-text"><span>3</span>FEWOCIOUS</div>
  182. </div>
  183. <div class="sec02-box1 col-lg-2">
  184. <img src="./img/sec02/top4webp.webp" alt="">
  185. <div class="sec02-top-text"><span>4</span>muratpak</div>
  186. <div>(派克)</div>
  187. </div>
  188. <div class="sec02-box1 col-lg-2">
  189. <img src="./img/sec02/top5webp.webp" alt="">
  190. <div class="sec02-top-text"><span>5</span>Maddogjones</div>
  191. <div>(麥道瓊斯)</div>
  192. </div>
  193. </div>
  194. </div>
  195. </div>
  196. </div>
  197. </section>
  198. <!-- sec02-Top-box- 手機板-->
  199. <section id="sec02-moblie">
  200. <div id="sec02-container" class="container-fluid">
  201. <div class="sec02-top1-box" class="row">
  202. <div class="col-12 order-1">
  203. <div class="row">
  204. <div style="text-align: center;" class="col-6">
  205. <!-- <img src="./img/sec02/top1webp.webp" alt="">
  206. <div class="sec02-top-text"><span>1</span>Beeple</div>
  207. <div style="text-align:center;">(邁克•溫克爾曼)</div> -->
  208. </div>
  209. <div class="col-6">
  210. <h1>TOP SELLERS</h1>
  211. <h1>THIS WEEK</h1>
  212. </div>
  213. </div>
  214. </div>
  215. <div id="sec02-content" class="col-12 order-2">
  216. <div id="sec02-top-box" class="row">
  217. <div class="sec02-box1 col-4 order-2 ">
  218. <img style="width:120px; height:150px;" src="./img/sec02/top1webp.webp" alt="">
  219. <div class="sec02-top-text"><span>1</span>Beeple</div>
  220. <div class="sec02-top-text" >(邁克溫克爾曼)</div>
  221. </div>
  222. <div class="sec02-box1 col-4 order-1 ">
  223. <img src="./img/sec02/top2webp.webp" alt="">
  224. <div class="sec02-top-text"><span>2</span>Trevorjonesart</div>
  225. <div class="sec02-top-text" style="display: block;">(特雷弗瓊斯)</div>
  226. </div>
  227. <div class="sec02-box1 col-4 order-3 ">
  228. <img src="./img/sec02/top3webp.webp" alt="">
  229. <div class="sec02-top-text"><span>3</span>muratpak</div>
  230. <div class="sec02-top-text" style="display: block;">(派克)</div>
  231. </div>
  232. </div>
  233. </div>
  234. </div>
  235. </div>
  236. </section>
  237. <!-- 排名區塊-電腦版 -->
  238. <section id="sec03">
  239. <div id="sec03-table" class="container-fluid">
  240. <div class="row">
  241. <div class="col-md-6 col-lg-6">
  242. <h1 class="sec03-table-title">COMMUNITY PICKS</h1>
  243. </div>
  244. <div class="col-md-6 col-lg-6">
  245. <h1 class="sec03-table-title" style="color:#9B9B9B;"> PROMOTED CREATIONS</h1>
  246. </div>
  247. </div>
  248. <div class="row" style="box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);">
  249. <div class="col-lg-6">
  250. <table class="table">
  251. <tbody>
  252. <tr>
  253. <th scope="row">1</th>
  254. <td>
  255. <img src="./img/sec03/top1webp.webp" alt="">
  256. <div class="sec03-table-text" style="display: inline-block ;">
  257. <div>
  258. <h1>作者:Simon Denny</h1>
  259. </div>
  260. <div>
  261. <p>作品名稱:Backdated NFT/Ethereum Stamp</p>
  262. </div>
  263. </div>
  264. </td>
  265. </tr>
  266. <tr>
  267. <th scope="row">2</th>
  268. <td>
  269. <img src="./img/sec03/top2webp.webp" alt="">
  270. <div class="sec03-table-text" style="display: inline-block ;">
  271. <div>
  272. <h1>作者:beeple</h1>
  273. </div>
  274. <div>
  275. <p>作品名稱:BULL RUN #115/271</p>
  276. </div>
  277. </div>
  278. </td>
  279. </tr>
  280. <tr>
  281. <th scope="row">3</th>
  282. <td>
  283. <img src="./img/sec03/top3webp.webp" alt="">
  284. <div class="sec03-table-text" style="display: inline-block ;">
  285. <div>
  286. <h1>作者:楊夏蕙</h1>
  287. </div>
  288. <div>
  289. <p>作品名稱:The Eternal Cloudsitter</p>
  290. </div>
  291. </div>
  292. </td>
  293. </tr>
  294. <tr>
  295. <th scope="row">4</th>
  296. <td>
  297. <img src="./img/sec03/top4webp.webp" alt="">
  298. <div class="sec03-table-text" style="display: inline-block ;">
  299. <div>
  300. <h1>作者:SasGlas</h1>
  301. </div>
  302. <div>
  303. <p>作品名稱:The Eternal Cloudsitter</p>
  304. </div>
  305. </div>
  306. </td>
  307. </tr>
  308. <tr>
  309. <th scope="row">5</th>
  310. <td>
  311. <img src="./img/sec03/top5webp.webp" alt="">
  312. <div class="sec03-table-text" style="display: inline-block ;">
  313. <div>
  314. <h1>作者:nifty-gateway-omnibus</h1>
  315. </div>
  316. <div>
  317. <p>作品名稱:Seven Nation Army Remix 004 #225/333</p>
  318. </div>
  319. </div>
  320. </td>
  321. </tr>
  322. </tbody>
  323. </table>
  324. </div>
  325. <div class="col-lg-6">
  326. <table class="table ">
  327. <tbody>
  328. <tr>
  329. <th scope="row">1</th>
  330. <td>
  331. <img src="./img/sec03/11webp.webp" alt="">
  332. <div class="sec03-table-text" style="display: inline-block ;">
  333. <div>
  334. <h1>pplpleasr</h1>
  335. </div>
  336. <div>
  337. </div>
  338. </div>
  339. </td>
  340. </tr>
  341. <tr>
  342. <th scope="row">2</th>
  343. <td>
  344. <img src="./img/sec03/22webp.webp" alt="">
  345. <div class="sec03-table-text" style="display: inline-block ;">
  346. <div>
  347. <h1>Gabe Weis</h1>
  348. </div>
  349. <div>
  350. </div>
  351. </div>
  352. </td>
  353. </tr>
  354. <tr>
  355. <th scope="row">3</th>
  356. <td>
  357. <img src="./img/sec03/33webp.webp" alt="">
  358. <div class="sec03-table-text" style="display: inline-block ;">
  359. <div>
  360. <h1>馬修 </h1>
  361. </div>
  362. <div>
  363. </div>
  364. </div>
  365. </td>
  366. </tr>
  367. <tr>
  368. <th scope="row">4</th>
  369. <td>
  370. <img src="./img/sec03/44webp.webp" alt="">
  371. <div class="sec03-table-text" style="display: inline-block ;">
  372. <div>
  373. <h1>麥羨雲</h1>
  374. </div>
  375. <div>
  376. </div>
  377. </div>
  378. </td>
  379. </tr>
  380. <tr>
  381. <th scope="row">5</th>
  382. <td>
  383. <img src="./img/sec03/55webp.webp" alt="">
  384. <div class="sec03-table-text" style="display: inline-block ;">
  385. <div>
  386. <h1>林淵源</h1>
  387. </div>
  388. <div>
  389. </div>
  390. </div>
  391. </td>
  392. </tr>
  393. </tbody>
  394. </table>
  395. </div>
  396. </div>
  397. </div>
  398. </section>
  399. <!-- 排名區塊-手機板 -->
  400. <section id="sec03-moblie">
  401. <div id="sec03-table" class="container-fluid">
  402. <div class="row">
  403. <div class="col-6">
  404. <h1 class="sec03-table-title">COMMUNITY PICKS</h1>
  405. </div>
  406. <div class="col-6">
  407. <h1 class="sec03-table-title" style="color:#9B9B9B;">PROMOTED CREATIONS</h1>
  408. </div>
  409. </div>
  410. <img style="position: absolute;" class="arrow-table" src="./img/arrow-table.png" alt="">
  411. <div id="sec03-slider" class="row">
  412. <div id="sec03-slider1" class="col-6" style="box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);">
  413. <table class="table">
  414. <tbody>
  415. <tr>
  416. <th scope="row">1</th>
  417. <td>
  418. <img src="./img/sec03/top1webp.webp" alt="">
  419. <div class="sec03-table-text" style="display: inline-block;" >
  420. <div>
  421. <h1>作者:Simon Denny</h1>
  422. </div>
  423. <div>
  424. <p>作品名稱:</p>
  425. <p>Backdated NFT/Ethereum Stamp</p>
  426. </div>
  427. </div>
  428. </td>
  429. </tr>
  430. <tr>
  431. <th scope="row">2</th>
  432. <td>
  433. <img src="./img/sec03/top2webp.webp" alt="">
  434. <div class="sec03-table-text" style="display: inline-block;">
  435. <div>
  436. <h1>作者:beeple</h1>
  437. </div>
  438. <div>
  439. <p>作品名稱:</p>
  440. <p>BULL RUN #115/271</p>
  441. </div>
  442. </div>
  443. </td>
  444. </tr>
  445. <tr>
  446. <th scope="row">3</th>
  447. <td>
  448. <img src="./img/sec03/top3webp.webp" alt="">
  449. <div class="sec03-table-text" style="display: inline-block;" >
  450. <div>
  451. <h1>作者:楊夏蕙</h1>
  452. </div>
  453. <div>
  454. <p>作品名稱:</p>
  455. <p>The Eternal Cloudsitter</p>
  456. </div>
  457. </div>
  458. </td>
  459. </tr>
  460. <tr>
  461. <th scope="row">4</th>
  462. <td>
  463. <img src="./img/sec03/top4webp.webp" alt="">
  464. <div class="sec03-table-text" style="display: inline-block;" >
  465. <div>
  466. <h1>作者:SasGlas</h1>
  467. </div>
  468. <div>
  469. <p>作品名稱:</p>
  470. <p>The Eternal Cloudsitter</p>
  471. </div>
  472. </div>
  473. </td>
  474. </tr>
  475. <tr>
  476. <th scope="row">5</th>
  477. <td>
  478. <img src="./img/sec03/top5webp.webp" alt="">
  479. <div class="sec03-table-text" style="display: inline-block" >
  480. <div>
  481. <h1>作者:nifty-gateway-omnibus</h1>
  482. </div>
  483. <div>
  484. <p>作品名稱:</p>
  485. <p>Seven Nation Army Remix</p>
  486. <p> 004#225/333</p>
  487. </div>
  488. </div>
  489. </td>
  490. </tr>
  491. </tbody>
  492. </table>
  493. </div>
  494. <div id="sec03-slider2" class="col-6" style=" box-shadow: 5px 0 10px -5px rgba(0, 0, 0, 0.3);">
  495. <table class="table ">
  496. <tbody>
  497. <tr>
  498. <th scope="row">1</th>
  499. <td>
  500. <img src="./img/sec03/11webp.webp" alt="">
  501. <div class="sec03-table-text" style="display: inline-block ;">
  502. <div>
  503. <h1>pplpleasr</h1>
  504. </div>
  505. <div>
  506. </div>
  507. </div>
  508. </td>
  509. </tr>
  510. <tr>
  511. <th scope="row">2</th>
  512. <td>
  513. <img src="./img/sec03/22webp.webp" alt="">
  514. <div class="sec03-table-text" style="display: inline-block ;">
  515. <div>
  516. <h1>Gabe Weis</h1>
  517. </div>
  518. <div>
  519. </div>
  520. </div>
  521. </td>
  522. </tr>
  523. <tr>
  524. <th scope="row">3</th>
  525. <td>
  526. <img src="./img/sec03/33webp.webp" alt="">
  527. <div class="sec03-table-text" style="display: inline-block ;">
  528. <div>
  529. <h1>馬修 </h1>
  530. </div>
  531. <div>
  532. </div>
  533. </div>
  534. </td>
  535. </tr>
  536. <tr>
  537. <th scope="row">4</th>
  538. <td>
  539. <img src="./img/sec03/44webp.webp" alt="">
  540. <div class="sec03-table-text" style="display: inline-block ;">
  541. <div>
  542. <h1>麥羨雲</h1>
  543. </div>
  544. <div>
  545. </div>
  546. </div>
  547. </td>
  548. </tr>
  549. <tr>
  550. <th scope="row">5</th>
  551. <td>
  552. <img src="./img/sec03/55webp.webp" alt="">
  553. <div class="sec03-table-text" style="display: inline-block ;">
  554. <div>
  555. <h1>林淵源</h1>
  556. </div>
  557. <div>
  558. </div>
  559. </div>
  560. </td>
  561. </tr>
  562. </tbody>
  563. </table>
  564. </div>
  565. </div>
  566. </div>
  567. </section>
  568. <!-- 洞察報告-電腦版 -->
  569. <section id="sec04">
  570. <div class="container-fluid">
  571. <h1>洞察報告</h1>
  572. <hr class="line">
  573. <div id="sec04-container" class="row row-cols-1 row-cols-md-4 g-4">
  574. <div class="col">
  575. <div class="card">
  576. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQHOgMWQbkyqPm6B&w=1000&h=522&url=https%3A%2F%2Fstorage.googleapis.com%2Fwww-cw-com-tw%2Farticle%2F202106%2Farticle-60b598d06e107.jpg&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQGlZiYPWM75RYW0"
  577. class="card-img-top" alt="...">
  578. <div class="card-body">
  579. <h5 class="card-title">馬斯克比特幣購車喊卡,真是因為耗能?還是在炒幣?</h5>
  580. <p class="card-text">【林之晨專欄】特斯拉2月原本要接受比特幣購車,5月卻改口說太耗能而喊停。背後的真相為何?這樣的耗能值得嗎?近期北美科技圈的熱門議題......
  581. </p>
  582. <a target="https://www.cw.com.tw/article/5115048?from=search" href="https://www.cw.com.tw/article/5115048?from=search"><button class="learn-more">LearnMore</button></a>
  583. </div>
  584. </div>
  585. </div>
  586. <div class="col">
  587. <div class="card">
  588. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/197261231_115136084144760_7228421096070991603_n.png?_nc_cat=109&ccb=1-3&_nc_sid=730e14&_nc_ohc=X3OJOaoolioAX96GsF0&_nc_ht=scontent.ftpe13-2.fna&oh=19d08354444bb8629451b616bb69d1a3&oe=60DEBBF5"
  589. class="card-img-top" alt="...">
  590. <div class="card-body">
  591. <h5 class="card-title">APENFT項目是致力於將世界級的藝術品註冊為NFTs。</h5>
  592. <p class="card-text">這類藝術品的規模有多大,大多數NFT都可以當成藝術品,比如卡牌,比如NBA TOP SHOT,那麼這個數據劃分其實有很大不一樣.......
  593. </p>
  594. <a href="https://weibo.com/ttarticle/p/show?id=2309404643700557873571"><button class="learn-more">LearnMore</button></a>
  595. </div>
  596. </div>
  597. </div>
  598. <div class="col">
  599. <div class="card">
  600. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQHOgMWQbkyqPm6B&w=1000&h=522&url=https%3A%2F%2Fstorage.googleapis.com%2Fwww-cw-com-tw%2Farticle%2F202106%2Farticle-60b598d06e107.jpg&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQGlZiYPWM75RYW0"
  601. class="card-img-top" alt="...">
  602. <div class="card-body">
  603. <h5 class="card-title">馬斯克比特幣購車喊卡,真是因為耗能?還是在炒幣?</h5>
  604. <p class="card-text">【林之晨專欄】特斯拉2月原本要接受比特幣購車,5月卻改口說太耗能而喊停。背後的真相為何?這樣的耗能值得嗎?近期北美科技圈的熱門議題......
  605. </p>
  606. <a href="https://www.cw.com.tw/article/5115048?from=search"><button class="learn-more">LearnMore</button></a>
  607. </div>
  608. </div>
  609. </div>
  610. <div class="col">
  611. <div class="card">
  612. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/197261231_115136084144760_7228421096070991603_n.png?_nc_cat=109&ccb=1-3&_nc_sid=730e14&_nc_ohc=X3OJOaoolioAX96GsF0&_nc_ht=scontent.ftpe13-2.fna&oh=19d08354444bb8629451b616bb69d1a3&oe=60DEBBF5"
  613. class="card-img-top" alt="...">
  614. <div class="card-body">
  615. <h5 class="card-title">APENFT項目是致力於將世界級的藝術品註冊為NFTs。</h5>
  616. <p class="card-text">這類藝術品的規模有多大,大多數NFT都可以當成藝術品,比如卡牌,比如NBA TOP SHOT,那麼這個數據劃分其實有很大不一樣.......
  617. </p>
  618. <a href="https://weibo.com/ttarticle/p/show?id=2309404643700557873571"><button class="learn-more">LearnMore</button></a>
  619. </div>
  620. </div>
  621. </div>
  622. </div>
  623. </div>
  624. </section>
  625. <!-- 洞察報告-手機板 -->
  626. <section id="sec04-moblie">
  627. <img style="position: absolute;" class="arrow-table" src="./img/arrow-table.png" alt="">
  628. <div id="sec04-moblie-title" class="container-fluid">
  629. <h1>洞察報告</h1>
  630. <hr class="line">
  631. <div id="sec04-moblie-container" class="row row-cols-1 row-cols-md-4 g-4">
  632. <div class="col">
  633. <div class="card">
  634. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQHOgMWQbkyqPm6B&w=1000&h=522&url=https%3A%2F%2Fstorage.googleapis.com%2Fwww-cw-com-tw%2Farticle%2F202106%2Farticle-60b598d06e107.jpg&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQGlZiYPWM75RYW0"
  635. class="card-img-top" alt="...">
  636. <div class="card-body">
  637. <h5 class="card-title">馬斯克比特幣購車喊卡,真是因為耗能?還是在炒幣?</h5>
  638. <p class="card-text">【林之晨專欄】特斯拉2月原本要接受比特幣購車,5月卻改口說太耗能而喊停。背後的真相為何?這樣的耗能值得嗎?近期北美科技圈的熱門議題......
  639. </p>
  640. <a href="https://www.cw.com.tw/article/5115048?from=search">查看更多</a>
  641. </div>
  642. </div>
  643. </div>
  644. <div class="col">
  645. <div class="card">
  646. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/197261231_115136084144760_7228421096070991603_n.png?_nc_cat=109&ccb=1-3&_nc_sid=730e14&_nc_ohc=X3OJOaoolioAX96GsF0&_nc_ht=scontent.ftpe13-2.fna&oh=19d08354444bb8629451b616bb69d1a3&oe=60DEBBF5"
  647. class="card-img-top" alt="...">
  648. <div class="card-body">
  649. <h5 class="card-title">APENFT項目是致力於將世界級的藝術品註冊為NFTs。</h5>
  650. <p class="card-text">這類藝術品的規模有多大,大多數NFT都可以當成藝術品,比如卡牌,比如NBA TOP SHOT,那麼這個數據劃分其實有很大不一樣.......
  651. </p>
  652. <a href="https://weibo.com/ttarticle/p/show?id=2309404643700557873571">查看更多</a>
  653. </div>
  654. </div>
  655. </div>
  656. <div class="col">
  657. <div class="card">
  658. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQHOgMWQbkyqPm6B&w=1000&h=522&url=https%3A%2F%2Fstorage.googleapis.com%2Fwww-cw-com-tw%2Farticle%2F202106%2Farticle-60b598d06e107.jpg&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQGlZiYPWM75RYW0"
  659. class="card-img-top" alt="...">
  660. <div class="card-body">
  661. <h5 class="card-title">馬斯克比特幣購車喊卡,真是因為耗能?還是在炒幣?</h5>
  662. <p class="card-text">【林之晨專欄】特斯拉2月原本要接受比特幣購車,5月卻改口說太耗能而喊停。背後的真相為何?這樣的耗能值得嗎?近期北美科技圈的熱門議題......
  663. </p>
  664. <a href="https://www.cw.com.tw/article/5115048?from=search">查看更多</a>
  665. </div>
  666. </div>
  667. </div>
  668. <div class="col">
  669. <div class="card">
  670. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/197261231_115136084144760_7228421096070991603_n.png?_nc_cat=109&ccb=1-3&_nc_sid=730e14&_nc_ohc=X3OJOaoolioAX96GsF0&_nc_ht=scontent.ftpe13-2.fna&oh=19d08354444bb8629451b616bb69d1a3&oe=60DEBBF5"
  671. class="card-img-top" alt="...">
  672. <div class="card-body">
  673. <h5 class="card-title">APENFT項目是致力於將世界級的藝術品註冊為NFTs。</h5>
  674. <p class="card-text">這類藝術品的規模有多大,大多數NFT都可以當成藝術品,比如卡牌,比如NBA TOP SHOT,那麼這個數據劃分其實有很大不一樣.......
  675. </p>
  676. <a href="https://weibo.com/ttarticle/p/show?id=2309404643700557873571">查看更多</a>
  677. </div>
  678. </div>
  679. </div>
  680. </div>
  681. </div>
  682. </section>
  683. <!-- 熱門作品 電腦版 -->
  684. <section id="sec05">
  685. <div class="container-fluid">
  686. <h1>熱門作品</h1>
  687. <!-- <div id="tag">
  688. <a href=""><button>Art</button></a>
  689. <a href=""><button>Collectible</button></a>
  690. <a href=""><button>GameItems</button></a>
  691. <a href=""><button>Domains</button></a>
  692. <a href=""><button>Templates</button></a>
  693. </div> -->
  694. <div id="sec05-container" class="container-fluid">
  695. <div id="sec05-destop-slider" class="row ">
  696. <div class="col">
  697. <div class="card">
  698. <blockquote class="instagram-media"
  699. data-instgrm-permalink="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  700. data-instgrm-version="13"
  701. 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);">
  702. <div style="padding:16px;"> <a
  703. href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  704. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  705. target="_blank">
  706. <div style=" display: flex; flex-direction: row; align-items: center;">
  707. <div
  708. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  709. </div>
  710. <div
  711. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  712. <div
  713. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  714. </div>
  715. <div
  716. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  717. </div>
  718. </div>
  719. </div>
  720. <div style="padding: 19% 0;"></div>
  721. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  722. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  723. xmlns="https://www.w3.org/2000/svg"
  724. xmlns:xlink="https://www.w3.org/1999/xlink">
  725. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  726. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  727. <g>
  728. <path
  729. 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">
  730. </path>
  731. </g>
  732. </g>
  733. </g>
  734. </svg></div>
  735. <div style="padding-top: 8px;">
  736. <div
  737. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  738. 在 Instagram 查看這則貼文</div>
  739. </div>
  740. <div style="padding: 12.5% 0;"></div>
  741. <div
  742. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  743. <div>
  744. <div
  745. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  746. </div>
  747. <div
  748. 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;">
  749. </div>
  750. <div
  751. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  752. </div>
  753. </div>
  754. <div style="margin-left: 8px;">
  755. <div
  756. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  757. </div>
  758. <div
  759. 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)">
  760. </div>
  761. </div>
  762. <div style="margin-left: auto;">
  763. <div
  764. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  765. </div>
  766. <div
  767. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  768. </div>
  769. <div
  770. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  771. </div>
  772. </div>
  773. </div>
  774. <div
  775. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  776. <div
  777. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  778. </div>
  779. <div
  780. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  781. </div>
  782. </div>
  783. </a>
  784. <p
  785. 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;">
  786. <a href="https://www.instagram.com/p/CNNSzxPAeeh/?utm_source=ig_embed&amp;utm_campaign=loading"
  787. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  788. target="_blank">NFT(@nft)分享的貼文</a>
  789. </p>
  790. </div>
  791. </blockquote>
  792. <script async src="//www.instagram.com/embed.js"></script>
  793. </div>
  794. </div>
  795. <div class="col">
  796. <div class="card">
  797. <blockquote class="instagram-media"
  798. data-instgrm-permalink="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  799. data-instgrm-version="13"
  800. 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);">
  801. <div style="padding:16px;"> <a
  802. href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  803. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  804. target="_blank">
  805. <div style=" display: flex; flex-direction: row; align-items: center;">
  806. <div
  807. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  808. </div>
  809. <div
  810. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  811. <div
  812. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  813. </div>
  814. <div
  815. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  816. </div>
  817. </div>
  818. </div>
  819. <div style="padding: 19% 0;"></div>
  820. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  821. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  822. xmlns="https://www.w3.org/2000/svg"
  823. xmlns:xlink="https://www.w3.org/1999/xlink">
  824. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  825. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  826. <g>
  827. <path
  828. 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">
  829. </path>
  830. </g>
  831. </g>
  832. </g>
  833. </svg></div>
  834. <div style="padding-top: 8px;">
  835. <div
  836. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  837. 在 Instagram 查看這則貼文</div>
  838. </div>
  839. <div style="padding: 12.5% 0;"></div>
  840. <div
  841. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  842. <div>
  843. <div
  844. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  845. </div>
  846. <div
  847. 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;">
  848. </div>
  849. <div
  850. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  851. </div>
  852. </div>
  853. <div style="margin-left: 8px;">
  854. <div
  855. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  856. </div>
  857. <div
  858. 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)">
  859. </div>
  860. </div>
  861. <div style="margin-left: auto;">
  862. <div
  863. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  864. </div>
  865. <div
  866. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  867. </div>
  868. <div
  869. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  870. </div>
  871. </div>
  872. </div>
  873. <div
  874. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  875. <div
  876. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  877. </div>
  878. <div
  879. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  880. </div>
  881. </div>
  882. </a>
  883. <p
  884. 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;">
  885. <a href="https://www.instagram.com/p/CQjK5X5hQ-K/?utm_source=ig_embed&amp;utm_campaign=loading"
  886. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  887. target="_blank">Andreas Wannerstedt(@wannerstedt)分享的貼文</a>
  888. </p>
  889. </div>
  890. </blockquote>
  891. <script async src="//www.instagram.com/embed.js"></script>
  892. </div>
  893. </div>
  894. <div class="col">
  895. <div class="card">
  896. <blockquote class="instagram-media"
  897. data-instgrm-permalink="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  898. data-instgrm-version="13"
  899. 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);">
  900. <div style="padding:16px;"> <a
  901. href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  902. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  903. target="_blank">
  904. <div style=" display: flex; flex-direction: row; align-items: center;">
  905. <div
  906. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  907. </div>
  908. <div
  909. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  910. <div
  911. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  912. </div>
  913. <div
  914. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  915. </div>
  916. </div>
  917. </div>
  918. <div style="padding: 19% 0;"></div>
  919. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  920. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  921. xmlns="https://www.w3.org/2000/svg"
  922. xmlns:xlink="https://www.w3.org/1999/xlink">
  923. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  924. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  925. <g>
  926. <path
  927. 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">
  928. </path>
  929. </g>
  930. </g>
  931. </g>
  932. </svg></div>
  933. <div style="padding-top: 8px;">
  934. <div
  935. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  936. 在 Instagram 查看這則貼文</div>
  937. </div>
  938. <div style="padding: 12.5% 0;"></div>
  939. <div
  940. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  941. <div>
  942. <div
  943. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  944. </div>
  945. <div
  946. 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;">
  947. </div>
  948. <div
  949. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  950. </div>
  951. </div>
  952. <div style="margin-left: 8px;">
  953. <div
  954. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  955. </div>
  956. <div
  957. 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)">
  958. </div>
  959. </div>
  960. <div style="margin-left: auto;">
  961. <div
  962. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  963. </div>
  964. <div
  965. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  966. </div>
  967. <div
  968. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  969. </div>
  970. </div>
  971. </div>
  972. <div
  973. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  974. <div
  975. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  976. </div>
  977. <div
  978. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  979. </div>
  980. </div>
  981. </a>
  982. <p
  983. 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;">
  984. <a href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  985. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  986. target="_blank">Don(@visualdon)分享的貼文</a>
  987. </p>
  988. </div>
  989. </blockquote>
  990. <script async src="//www.instagram.com/embed.js"></script>
  991. </div>
  992. </div>
  993. <div class="col">
  994. <div class="card">
  995. <blockquote class="instagram-media"
  996. data-instgrm-permalink="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  997. data-instgrm-version="13"
  998. 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);">
  999. <div style="padding:16px;"> <a
  1000. href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  1001. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1002. target="_blank">
  1003. <div style=" display: flex; flex-direction: row; align-items: center;">
  1004. <div
  1005. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1006. </div>
  1007. <div
  1008. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1009. <div
  1010. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1011. </div>
  1012. <div
  1013. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1014. </div>
  1015. </div>
  1016. </div>
  1017. <div style="padding: 19% 0;"></div>
  1018. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1019. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1020. xmlns="https://www.w3.org/2000/svg"
  1021. xmlns:xlink="https://www.w3.org/1999/xlink">
  1022. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1023. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1024. <g>
  1025. <path
  1026. 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">
  1027. </path>
  1028. </g>
  1029. </g>
  1030. </g>
  1031. </svg></div>
  1032. <div style="padding-top: 8px;">
  1033. <div
  1034. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1035. 在 Instagram 查看這則貼文</div>
  1036. </div>
  1037. <div style="padding: 12.5% 0;"></div>
  1038. <div
  1039. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1040. <div>
  1041. <div
  1042. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1043. </div>
  1044. <div
  1045. 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;">
  1046. </div>
  1047. <div
  1048. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1049. </div>
  1050. </div>
  1051. <div style="margin-left: 8px;">
  1052. <div
  1053. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1054. </div>
  1055. <div
  1056. 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)">
  1057. </div>
  1058. </div>
  1059. <div style="margin-left: auto;">
  1060. <div
  1061. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1062. </div>
  1063. <div
  1064. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1065. </div>
  1066. <div
  1067. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1068. </div>
  1069. </div>
  1070. </div>
  1071. <div
  1072. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1073. <div
  1074. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1075. </div>
  1076. <div
  1077. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1078. </div>
  1079. </div>
  1080. </a>
  1081. <p
  1082. 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;">
  1083. <a href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  1084. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1085. target="_blank">Jeff Cole(@cole)分享的貼文</a>
  1086. </p>
  1087. </div>
  1088. </blockquote>
  1089. <script async src="//www.instagram.com/embed.js"></script>
  1090. </div>
  1091. </div>
  1092. <div class="col">
  1093. <div class="card">
  1094. <blockquote class="instagram-media"
  1095. data-instgrm-permalink="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1096. data-instgrm-version="13"
  1097. 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);">
  1098. <div style="padding:16px;"> <a
  1099. href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1100. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1101. target="_blank">
  1102. <div style=" display: flex; flex-direction: row; align-items: center;">
  1103. <div
  1104. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1105. </div>
  1106. <div
  1107. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1108. <div
  1109. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1110. </div>
  1111. <div
  1112. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1113. </div>
  1114. </div>
  1115. </div>
  1116. <div style="padding: 19% 0;"></div>
  1117. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1118. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1119. xmlns="https://www.w3.org/2000/svg"
  1120. xmlns:xlink="https://www.w3.org/1999/xlink">
  1121. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1122. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1123. <g>
  1124. <path
  1125. 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">
  1126. </path>
  1127. </g>
  1128. </g>
  1129. </g>
  1130. </svg></div>
  1131. <div style="padding-top: 8px;">
  1132. <div
  1133. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1134. 在 Instagram 查看這則貼文</div>
  1135. </div>
  1136. <div style="padding: 12.5% 0;"></div>
  1137. <div
  1138. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1139. <div>
  1140. <div
  1141. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1142. </div>
  1143. <div
  1144. 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;">
  1145. </div>
  1146. <div
  1147. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1148. </div>
  1149. </div>
  1150. <div style="margin-left: 8px;">
  1151. <div
  1152. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1153. </div>
  1154. <div
  1155. 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)">
  1156. </div>
  1157. </div>
  1158. <div style="margin-left: auto;">
  1159. <div
  1160. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1161. </div>
  1162. <div
  1163. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1164. </div>
  1165. <div
  1166. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1167. </div>
  1168. </div>
  1169. </div>
  1170. <div
  1171. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1172. <div
  1173. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1174. </div>
  1175. <div
  1176. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1177. </div>
  1178. </div>
  1179. </a>
  1180. <p
  1181. 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;">
  1182. <a href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  1183. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1184. target="_blank">spaceclub(@spaceclub)分享的貼文</a>
  1185. </p>
  1186. </div>
  1187. </blockquote>
  1188. <script async src="//www.instagram.com/embed.js"></script>
  1189. </div>
  1190. </div>
  1191. <div class="col">
  1192. <div class="card">
  1193. <blockquote class="instagram-media"
  1194. data-instgrm-permalink="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1195. data-instgrm-version="13"
  1196. 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);">
  1197. <div style="padding:16px;"> <a
  1198. href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1199. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1200. target="_blank">
  1201. <div style=" display: flex; flex-direction: row; align-items: center;">
  1202. <div
  1203. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1204. </div>
  1205. <div
  1206. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1207. <div
  1208. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1209. </div>
  1210. <div
  1211. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1212. </div>
  1213. </div>
  1214. </div>
  1215. <div style="padding: 19% 0;"></div>
  1216. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1217. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1218. xmlns="https://www.w3.org/2000/svg"
  1219. xmlns:xlink="https://www.w3.org/1999/xlink">
  1220. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1221. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1222. <g>
  1223. <path
  1224. 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">
  1225. </path>
  1226. </g>
  1227. </g>
  1228. </g>
  1229. </svg></div>
  1230. <div style="padding-top: 8px;">
  1231. <div
  1232. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1233. 在 Instagram 查看這則貼文</div>
  1234. </div>
  1235. <div style="padding: 12.5% 0;"></div>
  1236. <div
  1237. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1238. <div>
  1239. <div
  1240. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1241. </div>
  1242. <div
  1243. 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;">
  1244. </div>
  1245. <div
  1246. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1247. </div>
  1248. </div>
  1249. <div style="margin-left: 8px;">
  1250. <div
  1251. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1252. </div>
  1253. <div
  1254. 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)">
  1255. </div>
  1256. </div>
  1257. <div style="margin-left: auto;">
  1258. <div
  1259. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1260. </div>
  1261. <div
  1262. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1263. </div>
  1264. <div
  1265. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1266. </div>
  1267. </div>
  1268. </div>
  1269. <div
  1270. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1271. <div
  1272. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1273. </div>
  1274. <div
  1275. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1276. </div>
  1277. </div>
  1278. </a>
  1279. <p
  1280. 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;">
  1281. <a href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1282. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1283. target="_blank">NFT(@nft)分享的貼文</a>
  1284. </p>
  1285. </div>
  1286. </blockquote>
  1287. <script async src="//www.instagram.com/embed.js"></script>
  1288. </div>
  1289. </div>
  1290. <div class="col">
  1291. <div class="card">
  1292. <blockquote class="instagram-media"
  1293. data-instgrm-permalink="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1294. data-instgrm-version="13"
  1295. 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);">
  1296. <div style="padding:16px;"> <a
  1297. href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1298. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1299. target="_blank">
  1300. <div style=" display: flex; flex-direction: row; align-items: center;">
  1301. <div
  1302. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1303. </div>
  1304. <div
  1305. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1306. <div
  1307. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1308. </div>
  1309. <div
  1310. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1311. </div>
  1312. </div>
  1313. </div>
  1314. <div style="padding: 19% 0;"></div>
  1315. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1316. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1317. xmlns="https://www.w3.org/2000/svg"
  1318. xmlns:xlink="https://www.w3.org/1999/xlink">
  1319. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1320. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1321. <g>
  1322. <path
  1323. 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">
  1324. </path>
  1325. </g>
  1326. </g>
  1327. </g>
  1328. </svg></div>
  1329. <div style="padding-top: 8px;">
  1330. <div
  1331. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1332. 在 Instagram 查看這則貼文</div>
  1333. </div>
  1334. <div style="padding: 12.5% 0;"></div>
  1335. <div
  1336. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1337. <div>
  1338. <div
  1339. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1340. </div>
  1341. <div
  1342. 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;">
  1343. </div>
  1344. <div
  1345. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1346. </div>
  1347. </div>
  1348. <div style="margin-left: 8px;">
  1349. <div
  1350. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1351. </div>
  1352. <div
  1353. 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)">
  1354. </div>
  1355. </div>
  1356. <div style="margin-left: auto;">
  1357. <div
  1358. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1359. </div>
  1360. <div
  1361. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1362. </div>
  1363. <div
  1364. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1365. </div>
  1366. </div>
  1367. </div>
  1368. <div
  1369. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1370. <div
  1371. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1372. </div>
  1373. <div
  1374. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1375. </div>
  1376. </div>
  1377. </a>
  1378. <p
  1379. 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;">
  1380. <a href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  1381. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1382. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  1383. </p>
  1384. </div>
  1385. </blockquote>
  1386. <script async src="//www.instagram.com/embed.js"></script>
  1387. </div>
  1388. </div>
  1389. <div class="col">
  1390. <div class="card">
  1391. <blockquote class="instagram-media"
  1392. data-instgrm-permalink="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  1393. data-instgrm-version="13"
  1394. 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);">
  1395. <div style="padding:16px;"> <a
  1396. href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  1397. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1398. target="_blank">
  1399. <div style=" display: flex; flex-direction: row; align-items: center;">
  1400. <div
  1401. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1402. </div>
  1403. <div
  1404. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1405. <div
  1406. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1407. </div>
  1408. <div
  1409. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1410. </div>
  1411. </div>
  1412. </div>
  1413. <div style="padding: 19% 0;"></div>
  1414. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1415. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1416. xmlns="https://www.w3.org/2000/svg"
  1417. xmlns:xlink="https://www.w3.org/1999/xlink">
  1418. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1419. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1420. <g>
  1421. <path
  1422. 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">
  1423. </path>
  1424. </g>
  1425. </g>
  1426. </g>
  1427. </svg></div>
  1428. <div style="padding-top: 8px;">
  1429. <div
  1430. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1431. 在 Instagram 查看這則貼文</div>
  1432. </div>
  1433. <div style="padding: 12.5% 0;"></div>
  1434. <div
  1435. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1436. <div>
  1437. <div
  1438. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1439. </div>
  1440. <div
  1441. 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;">
  1442. </div>
  1443. <div
  1444. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1445. </div>
  1446. </div>
  1447. <div style="margin-left: 8px;">
  1448. <div
  1449. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1450. </div>
  1451. <div
  1452. 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)">
  1453. </div>
  1454. </div>
  1455. <div style="margin-left: auto;">
  1456. <div
  1457. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1458. </div>
  1459. <div
  1460. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1461. </div>
  1462. <div
  1463. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1464. </div>
  1465. </div>
  1466. </div>
  1467. <div
  1468. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1469. <div
  1470. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1471. </div>
  1472. <div
  1473. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1474. </div>
  1475. </div>
  1476. </a>
  1477. <p
  1478. 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;">
  1479. <a href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  1480. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1481. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  1482. </p>
  1483. </div>
  1484. </blockquote>
  1485. <script async src="//www.instagram.com/embed.js"></script>
  1486. </div>
  1487. </div>
  1488. <div class="col">
  1489. <div class="card">
  1490. <blockquote class="instagram-media"
  1491. data-instgrm-permalink="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  1492. data-instgrm-version="13"
  1493. 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);">
  1494. <div style="padding:16px;"> <a
  1495. href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  1496. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1497. target="_blank">
  1498. <div style=" display: flex; flex-direction: row; align-items: center;">
  1499. <div
  1500. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1501. </div>
  1502. <div
  1503. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1504. <div
  1505. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1506. </div>
  1507. <div
  1508. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1509. </div>
  1510. </div>
  1511. </div>
  1512. <div style="padding: 19% 0;"></div>
  1513. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1514. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1515. xmlns="https://www.w3.org/2000/svg"
  1516. xmlns:xlink="https://www.w3.org/1999/xlink">
  1517. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1518. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1519. <g>
  1520. <path
  1521. 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">
  1522. </path>
  1523. </g>
  1524. </g>
  1525. </g>
  1526. </svg></div>
  1527. <div style="padding-top: 8px;">
  1528. <div
  1529. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1530. 在 Instagram 查看這則貼文</div>
  1531. </div>
  1532. <div style="padding: 12.5% 0;"></div>
  1533. <div
  1534. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1535. <div>
  1536. <div
  1537. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1538. </div>
  1539. <div
  1540. 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;">
  1541. </div>
  1542. <div
  1543. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1544. </div>
  1545. </div>
  1546. <div style="margin-left: 8px;">
  1547. <div
  1548. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1549. </div>
  1550. <div
  1551. 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)">
  1552. </div>
  1553. </div>
  1554. <div style="margin-left: auto;">
  1555. <div
  1556. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1557. </div>
  1558. <div
  1559. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1560. </div>
  1561. <div
  1562. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1563. </div>
  1564. </div>
  1565. </div>
  1566. <div
  1567. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1568. <div
  1569. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1570. </div>
  1571. <div
  1572. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1573. </div>
  1574. </div>
  1575. </a>
  1576. <p
  1577. 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;">
  1578. <a href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  1579. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1580. target="_blank">NFT ART 🎨(@nft__galaxy)分享的貼文</a>
  1581. </p>
  1582. </div>
  1583. </blockquote>
  1584. <script async src="//www.instagram.com/embed.js"></script>
  1585. </div>
  1586. </div>
  1587. <div class="col">
  1588. <div class="card">
  1589. <blockquote class="instagram-media"
  1590. data-instgrm-permalink="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1591. data-instgrm-version="13"
  1592. 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);">
  1593. <div style="padding:16px;"> <a
  1594. href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1595. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1596. target="_blank">
  1597. <div style=" display: flex; flex-direction: row; align-items: center;">
  1598. <div
  1599. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1600. </div>
  1601. <div
  1602. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1603. <div
  1604. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1605. </div>
  1606. <div
  1607. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1608. </div>
  1609. </div>
  1610. </div>
  1611. <div style="padding: 19% 0;"></div>
  1612. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1613. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1614. xmlns="https://www.w3.org/2000/svg"
  1615. xmlns:xlink="https://www.w3.org/1999/xlink">
  1616. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1617. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1618. <g>
  1619. <path
  1620. 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">
  1621. </path>
  1622. </g>
  1623. </g>
  1624. </g>
  1625. </svg></div>
  1626. <div style="padding-top: 8px;">
  1627. <div
  1628. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1629. 在 Instagram 查看這則貼文</div>
  1630. </div>
  1631. <div style="padding: 12.5% 0;"></div>
  1632. <div
  1633. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1634. <div>
  1635. <div
  1636. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1637. </div>
  1638. <div
  1639. 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;">
  1640. </div>
  1641. <div
  1642. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1643. </div>
  1644. </div>
  1645. <div style="margin-left: 8px;">
  1646. <div
  1647. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1648. </div>
  1649. <div
  1650. 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)">
  1651. </div>
  1652. </div>
  1653. <div style="margin-left: auto;">
  1654. <div
  1655. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1656. </div>
  1657. <div
  1658. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1659. </div>
  1660. <div
  1661. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1662. </div>
  1663. </div>
  1664. </div>
  1665. <div
  1666. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1667. <div
  1668. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1669. </div>
  1670. <div
  1671. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1672. </div>
  1673. </div>
  1674. </a>
  1675. <p
  1676. 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;">
  1677. <a href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  1678. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1679. target="_blank">Yohann Schepacz - OYO(@yohannschepaczart)分享的貼文</a>
  1680. </p>
  1681. </div>
  1682. </blockquote>
  1683. <script async src="//www.instagram.com/embed.js"></script>
  1684. </div>
  1685. </div>
  1686. <div class="col">
  1687. <div class="card">
  1688. <blockquote class="instagram-media"
  1689. data-instgrm-permalink="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  1690. data-instgrm-version="13"
  1691. 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);">
  1692. <div style="padding:16px;"> <a
  1693. href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  1694. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1695. target="_blank">
  1696. <div style=" display: flex; flex-direction: row; align-items: center;">
  1697. <div
  1698. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1699. </div>
  1700. <div
  1701. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1702. <div
  1703. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1704. </div>
  1705. <div
  1706. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1707. </div>
  1708. </div>
  1709. </div>
  1710. <div style="padding: 19% 0;"></div>
  1711. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1712. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1713. xmlns="https://www.w3.org/2000/svg"
  1714. xmlns:xlink="https://www.w3.org/1999/xlink">
  1715. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1716. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1717. <g>
  1718. <path
  1719. 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">
  1720. </path>
  1721. </g>
  1722. </g>
  1723. </g>
  1724. </svg></div>
  1725. <div style="padding-top: 8px;">
  1726. <div
  1727. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1728. 在 Instagram 查看這則貼文</div>
  1729. </div>
  1730. <div style="padding: 12.5% 0;"></div>
  1731. <div
  1732. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1733. <div>
  1734. <div
  1735. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1736. </div>
  1737. <div
  1738. 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;">
  1739. </div>
  1740. <div
  1741. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1742. </div>
  1743. </div>
  1744. <div style="margin-left: 8px;">
  1745. <div
  1746. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1747. </div>
  1748. <div
  1749. 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)">
  1750. </div>
  1751. </div>
  1752. <div style="margin-left: auto;">
  1753. <div
  1754. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1755. </div>
  1756. <div
  1757. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1758. </div>
  1759. <div
  1760. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1761. </div>
  1762. </div>
  1763. </div>
  1764. <div
  1765. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1766. <div
  1767. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1768. </div>
  1769. <div
  1770. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1771. </div>
  1772. </div>
  1773. </a>
  1774. <p
  1775. 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;">
  1776. <a href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  1777. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1778. target="_blank">NFT(@nft)分享的貼文</a>
  1779. </p>
  1780. </div>
  1781. </blockquote>
  1782. <script async src="//www.instagram.com/embed.js"></script>
  1783. </div>
  1784. </div>
  1785. <div class="col">
  1786. <div class="card">
  1787. <blockquote class="instagram-media"
  1788. data-instgrm-permalink="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  1789. data-instgrm-version="13"
  1790. 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);">
  1791. <div style="padding:16px;"> <a
  1792. href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  1793. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  1794. target="_blank">
  1795. <div style=" display: flex; flex-direction: row; align-items: center;">
  1796. <div
  1797. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  1798. </div>
  1799. <div
  1800. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  1801. <div
  1802. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  1803. </div>
  1804. <div
  1805. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  1806. </div>
  1807. </div>
  1808. </div>
  1809. <div style="padding: 19% 0;"></div>
  1810. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  1811. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  1812. xmlns="https://www.w3.org/2000/svg"
  1813. xmlns:xlink="https://www.w3.org/1999/xlink">
  1814. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1815. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  1816. <g>
  1817. <path
  1818. 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">
  1819. </path>
  1820. </g>
  1821. </g>
  1822. </g>
  1823. </svg></div>
  1824. <div style="padding-top: 8px;">
  1825. <div
  1826. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  1827. 在 Instagram 查看這則貼文</div>
  1828. </div>
  1829. <div style="padding: 12.5% 0;"></div>
  1830. <div
  1831. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  1832. <div>
  1833. <div
  1834. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  1835. </div>
  1836. <div
  1837. 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;">
  1838. </div>
  1839. <div
  1840. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  1841. </div>
  1842. </div>
  1843. <div style="margin-left: 8px;">
  1844. <div
  1845. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  1846. </div>
  1847. <div
  1848. 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)">
  1849. </div>
  1850. </div>
  1851. <div style="margin-left: auto;">
  1852. <div
  1853. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  1854. </div>
  1855. <div
  1856. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  1857. </div>
  1858. <div
  1859. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  1860. </div>
  1861. </div>
  1862. </div>
  1863. <div
  1864. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  1865. <div
  1866. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  1867. </div>
  1868. <div
  1869. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  1870. </div>
  1871. </div>
  1872. </a>
  1873. <p
  1874. 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;">
  1875. <a href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  1876. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  1877. target="_blank">NFT(@nft)分享的貼文</a>
  1878. </p>
  1879. </div>
  1880. </blockquote>
  1881. <script async src="//www.instagram.com/embed.js"></script>
  1882. </div>
  1883. </div>
  1884. </div>
  1885. </div>
  1886. </div>
  1887. </section>
  1888. <!-- 熱門作品-手機板 -->
  1889. <section id="sec05-moblie">
  1890. <div id="sec05-moblie-container" class="container-fluid" style="margin: 0; padding: 0;">
  1891. <h1>熱門作品</h1>
  1892. <img style="position: absolute;" class="arrow-table" src="./img/arrow-table.png" alt="">
  1893. <!-- <div id="tag">
  1894. <a href=""><button>Art</button></a>
  1895. <a href=""><button>Collectible</button></a>
  1896. <a href=""><button>GameItems</button></a>
  1897. <a href=""><button>Domains</button></a>
  1898. <a href=""><button>Templates</button></a>
  1899. </div> -->
  1900. <div id="sec05-container" class="container-fluid " style="margin: 0; padding: 0;">
  1901. <div id="sec05-moblie-slider" class="row row-cols-1 row-cols-md-3 g-4">
  1902. <div class="sec05-moblie-box col">
  1903. <div class="card">
  1904. <blockquote class="instagram-media"
  1905. data-instgrm-permalink="https://www.instagram.com/p/CNNSzxPAeeh/?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/CNNSzxPAeeh/?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/CNNSzxPAeeh/?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="sec05-moblie-box col">
  2002. <div class="card">
  2003. <blockquote class="instagram-media"
  2004. data-instgrm-permalink="https://www.instagram.com/p/CQjK5X5hQ-K/?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/CQjK5X5hQ-K/?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/CQjK5X5hQ-K/?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">Andreas Wannerstedt(@wannerstedt)分享的貼文</a>
  2094. </p>
  2095. </div>
  2096. </blockquote>
  2097. <script async src="//www.instagram.com/embed.js"></script>
  2098. </div>
  2099. </div>
  2100. <div class="sec05-moblie-box col">
  2101. <div class="card">
  2102. <blockquote class="instagram-media"
  2103. data-instgrm-permalink="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2104. data-instgrm-version="13"
  2105. 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);">
  2106. <div style="padding:16px;"> <a
  2107. href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2108. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2109. target="_blank">
  2110. <div style=" display: flex; flex-direction: row; align-items: center;">
  2111. <div
  2112. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2113. </div>
  2114. <div
  2115. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2116. <div
  2117. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2118. </div>
  2119. <div
  2120. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2121. </div>
  2122. </div>
  2123. </div>
  2124. <div style="padding: 19% 0;"></div>
  2125. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2126. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2127. xmlns="https://www.w3.org/2000/svg"
  2128. xmlns:xlink="https://www.w3.org/1999/xlink">
  2129. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2130. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2131. <g>
  2132. <path
  2133. 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">
  2134. </path>
  2135. </g>
  2136. </g>
  2137. </g>
  2138. </svg></div>
  2139. <div style="padding-top: 8px;">
  2140. <div
  2141. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2142. 在 Instagram 查看這則貼文</div>
  2143. </div>
  2144. <div style="padding: 12.5% 0;"></div>
  2145. <div
  2146. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2147. <div>
  2148. <div
  2149. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2150. </div>
  2151. <div
  2152. 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;">
  2153. </div>
  2154. <div
  2155. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2156. </div>
  2157. </div>
  2158. <div style="margin-left: 8px;">
  2159. <div
  2160. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2161. </div>
  2162. <div
  2163. 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)">
  2164. </div>
  2165. </div>
  2166. <div style="margin-left: auto;">
  2167. <div
  2168. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2169. </div>
  2170. <div
  2171. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2172. </div>
  2173. <div
  2174. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2175. </div>
  2176. </div>
  2177. </div>
  2178. <div
  2179. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2180. <div
  2181. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2182. </div>
  2183. <div
  2184. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2185. </div>
  2186. </div>
  2187. </a>
  2188. <p
  2189. 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;">
  2190. <a href="https://www.instagram.com/reel/CN-VqRjJuM2/?utm_source=ig_embed&amp;utm_campaign=loading"
  2191. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2192. target="_blank">Don(@visualdon)分享的貼文</a>
  2193. </p>
  2194. </div>
  2195. </blockquote>
  2196. <script async src="//www.instagram.com/embed.js"></script>
  2197. </div>
  2198. </div>
  2199. <div class="sec05-moblie-box col">
  2200. <div class="card">
  2201. <blockquote class="instagram-media"
  2202. data-instgrm-permalink="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2203. data-instgrm-version="13"
  2204. 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);">
  2205. <div style="padding:16px;"> <a
  2206. href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2207. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2208. target="_blank">
  2209. <div style=" display: flex; flex-direction: row; align-items: center;">
  2210. <div
  2211. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2212. </div>
  2213. <div
  2214. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2215. <div
  2216. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2217. </div>
  2218. <div
  2219. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2220. </div>
  2221. </div>
  2222. </div>
  2223. <div style="padding: 19% 0;"></div>
  2224. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2225. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2226. xmlns="https://www.w3.org/2000/svg"
  2227. xmlns:xlink="https://www.w3.org/1999/xlink">
  2228. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2229. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2230. <g>
  2231. <path
  2232. 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">
  2233. </path>
  2234. </g>
  2235. </g>
  2236. </g>
  2237. </svg></div>
  2238. <div style="padding-top: 8px;">
  2239. <div
  2240. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2241. 在 Instagram 查看這則貼文</div>
  2242. </div>
  2243. <div style="padding: 12.5% 0;"></div>
  2244. <div
  2245. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2246. <div>
  2247. <div
  2248. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2249. </div>
  2250. <div
  2251. 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;">
  2252. </div>
  2253. <div
  2254. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2255. </div>
  2256. </div>
  2257. <div style="margin-left: 8px;">
  2258. <div
  2259. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2260. </div>
  2261. <div
  2262. 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)">
  2263. </div>
  2264. </div>
  2265. <div style="margin-left: auto;">
  2266. <div
  2267. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2268. </div>
  2269. <div
  2270. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2271. </div>
  2272. <div
  2273. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2274. </div>
  2275. </div>
  2276. </div>
  2277. <div
  2278. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2279. <div
  2280. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2281. </div>
  2282. <div
  2283. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2284. </div>
  2285. </div>
  2286. </a>
  2287. <p
  2288. 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;">
  2289. <a href="https://www.instagram.com/p/CKguAnxBR_g/?utm_source=ig_embed&amp;utm_campaign=loading"
  2290. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2291. target="_blank">Jeff Cole(@cole)分享的貼文</a>
  2292. </p>
  2293. </div>
  2294. </blockquote>
  2295. <script async src="//www.instagram.com/embed.js"></script>
  2296. </div>
  2297. </div>
  2298. <div class="sec05-moblie-box col">
  2299. <div class="card">
  2300. <blockquote class="instagram-media"
  2301. data-instgrm-permalink="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2302. data-instgrm-version="13"
  2303. 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);">
  2304. <div style="padding:16px;"> <a
  2305. href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2306. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2307. target="_blank">
  2308. <div style=" display: flex; flex-direction: row; align-items: center;">
  2309. <div
  2310. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2311. </div>
  2312. <div
  2313. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2314. <div
  2315. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2316. </div>
  2317. <div
  2318. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2319. </div>
  2320. </div>
  2321. </div>
  2322. <div style="padding: 19% 0;"></div>
  2323. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2324. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2325. xmlns="https://www.w3.org/2000/svg"
  2326. xmlns:xlink="https://www.w3.org/1999/xlink">
  2327. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2328. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2329. <g>
  2330. <path
  2331. d="M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631">
  2332. </path>
  2333. </g>
  2334. </g>
  2335. </g>
  2336. </svg></div>
  2337. <div style="padding-top: 8px;">
  2338. <div
  2339. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2340. 在 Instagram 查看這則貼文</div>
  2341. </div>
  2342. <div style="padding: 12.5% 0;"></div>
  2343. <div
  2344. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2345. <div>
  2346. <div
  2347. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2348. </div>
  2349. <div
  2350. style="background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;">
  2351. </div>
  2352. <div
  2353. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2354. </div>
  2355. </div>
  2356. <div style="margin-left: 8px;">
  2357. <div
  2358. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2359. </div>
  2360. <div
  2361. style=" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)">
  2362. </div>
  2363. </div>
  2364. <div style="margin-left: auto;">
  2365. <div
  2366. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2367. </div>
  2368. <div
  2369. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2370. </div>
  2371. <div
  2372. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2373. </div>
  2374. </div>
  2375. </div>
  2376. <div
  2377. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2378. <div
  2379. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2380. </div>
  2381. <div
  2382. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2383. </div>
  2384. </div>
  2385. </a>
  2386. <p
  2387. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;">
  2388. <a href="https://www.instagram.com/p/CQkP_wCI6Jf/?utm_source=ig_embed&amp;utm_campaign=loading"
  2389. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2390. target="_blank">spaceclub(@spaceclub)分享的貼文</a>
  2391. </p>
  2392. </div>
  2393. </blockquote>
  2394. <script async src="//www.instagram.com/embed.js"></script>
  2395. </div>
  2396. </div>
  2397. <div class="sec05-moblie-box col">
  2398. <div class="card">
  2399. <blockquote class="instagram-media"
  2400. data-instgrm-permalink="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2401. data-instgrm-version="13"
  2402. style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
  2403. <div style="padding:16px;"> <a
  2404. href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2405. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2406. target="_blank">
  2407. <div style=" display: flex; flex-direction: row; align-items: center;">
  2408. <div
  2409. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2410. </div>
  2411. <div
  2412. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2413. <div
  2414. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2415. </div>
  2416. <div
  2417. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2418. </div>
  2419. </div>
  2420. </div>
  2421. <div style="padding: 19% 0;"></div>
  2422. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2423. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2424. xmlns="https://www.w3.org/2000/svg"
  2425. xmlns:xlink="https://www.w3.org/1999/xlink">
  2426. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2427. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2428. <g>
  2429. <path
  2430. 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">
  2431. </path>
  2432. </g>
  2433. </g>
  2434. </g>
  2435. </svg></div>
  2436. <div style="padding-top: 8px;">
  2437. <div
  2438. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2439. 在 Instagram 查看這則貼文</div>
  2440. </div>
  2441. <div style="padding: 12.5% 0;"></div>
  2442. <div
  2443. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2444. <div>
  2445. <div
  2446. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2447. </div>
  2448. <div
  2449. 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;">
  2450. </div>
  2451. <div
  2452. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2453. </div>
  2454. </div>
  2455. <div style="margin-left: 8px;">
  2456. <div
  2457. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2458. </div>
  2459. <div
  2460. 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)">
  2461. </div>
  2462. </div>
  2463. <div style="margin-left: auto;">
  2464. <div
  2465. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2466. </div>
  2467. <div
  2468. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2469. </div>
  2470. <div
  2471. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2472. </div>
  2473. </div>
  2474. </div>
  2475. <div
  2476. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2477. <div
  2478. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2479. </div>
  2480. <div
  2481. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2482. </div>
  2483. </div>
  2484. </a>
  2485. <p
  2486. 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;">
  2487. <a href="https://www.instagram.com/p/COiXWZqATs6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2488. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2489. target="_blank">NFT(@nft)分享的貼文</a>
  2490. </p>
  2491. </div>
  2492. </blockquote>
  2493. <script async src="//www.instagram.com/embed.js"></script>
  2494. </div>
  2495. </div>
  2496. <div class="sec05-moblie-box col">
  2497. <div class="card">
  2498. <blockquote class="instagram-media"
  2499. data-instgrm-permalink="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  2500. data-instgrm-version="13"
  2501. 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);">
  2502. <div style="padding:16px;"> <a
  2503. href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  2504. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2505. target="_blank">
  2506. <div style=" display: flex; flex-direction: row; align-items: center;">
  2507. <div
  2508. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2509. </div>
  2510. <div
  2511. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2512. <div
  2513. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2514. </div>
  2515. <div
  2516. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2517. </div>
  2518. </div>
  2519. </div>
  2520. <div style="padding: 19% 0;"></div>
  2521. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2522. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2523. xmlns="https://www.w3.org/2000/svg"
  2524. xmlns:xlink="https://www.w3.org/1999/xlink">
  2525. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2526. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2527. <g>
  2528. <path
  2529. 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">
  2530. </path>
  2531. </g>
  2532. </g>
  2533. </g>
  2534. </svg></div>
  2535. <div style="padding-top: 8px;">
  2536. <div
  2537. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2538. 在 Instagram 查看這則貼文</div>
  2539. </div>
  2540. <div style="padding: 12.5% 0;"></div>
  2541. <div
  2542. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2543. <div>
  2544. <div
  2545. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2546. </div>
  2547. <div
  2548. 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;">
  2549. </div>
  2550. <div
  2551. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2552. </div>
  2553. </div>
  2554. <div style="margin-left: 8px;">
  2555. <div
  2556. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2557. </div>
  2558. <div
  2559. 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)">
  2560. </div>
  2561. </div>
  2562. <div style="margin-left: auto;">
  2563. <div
  2564. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2565. </div>
  2566. <div
  2567. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2568. </div>
  2569. <div
  2570. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2571. </div>
  2572. </div>
  2573. </div>
  2574. <div
  2575. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2576. <div
  2577. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2578. </div>
  2579. <div
  2580. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2581. </div>
  2582. </div>
  2583. </a>
  2584. <p
  2585. 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;">
  2586. <a href="https://www.instagram.com/p/CPL7OfjgOVq/?utm_source=ig_embed&amp;utm_campaign=loading"
  2587. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2588. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  2589. </p>
  2590. </div>
  2591. </blockquote>
  2592. <script async src="//www.instagram.com/embed.js"></script>
  2593. </div>
  2594. </div>
  2595. <div class="sec05-moblie-box col">
  2596. <div class="card">
  2597. <blockquote class="instagram-media"
  2598. data-instgrm-permalink="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  2599. data-instgrm-version="13"
  2600. 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);">
  2601. <div style="padding:16px;"> <a
  2602. href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  2603. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2604. target="_blank">
  2605. <div style=" display: flex; flex-direction: row; align-items: center;">
  2606. <div
  2607. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2608. </div>
  2609. <div
  2610. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2611. <div
  2612. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2613. </div>
  2614. <div
  2615. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2616. </div>
  2617. </div>
  2618. </div>
  2619. <div style="padding: 19% 0;"></div>
  2620. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2621. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2622. xmlns="https://www.w3.org/2000/svg"
  2623. xmlns:xlink="https://www.w3.org/1999/xlink">
  2624. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2625. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2626. <g>
  2627. <path
  2628. 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">
  2629. </path>
  2630. </g>
  2631. </g>
  2632. </g>
  2633. </svg></div>
  2634. <div style="padding-top: 8px;">
  2635. <div
  2636. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2637. 在 Instagram 查看這則貼文</div>
  2638. </div>
  2639. <div style="padding: 12.5% 0;"></div>
  2640. <div
  2641. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2642. <div>
  2643. <div
  2644. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2645. </div>
  2646. <div
  2647. 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;">
  2648. </div>
  2649. <div
  2650. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2651. </div>
  2652. </div>
  2653. <div style="margin-left: 8px;">
  2654. <div
  2655. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2656. </div>
  2657. <div
  2658. 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)">
  2659. </div>
  2660. </div>
  2661. <div style="margin-left: auto;">
  2662. <div
  2663. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2664. </div>
  2665. <div
  2666. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2667. </div>
  2668. <div
  2669. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2670. </div>
  2671. </div>
  2672. </div>
  2673. <div
  2674. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2675. <div
  2676. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2677. </div>
  2678. <div
  2679. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2680. </div>
  2681. </div>
  2682. </a>
  2683. <p
  2684. 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;">
  2685. <a href="https://www.instagram.com/p/COZc2cfAxZA/?utm_source=ig_embed&amp;utm_campaign=loading"
  2686. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2687. target="_blank">𝗡𝗙𝗧 𝗖𝗢𝗟𝗟𝗘𝗖𝗧𝗢𝗥𝗦 🎯(@nft.collectors)分享的貼文</a>
  2688. </p>
  2689. </div>
  2690. </blockquote>
  2691. <script async src="//www.instagram.com/embed.js"></script>
  2692. </div>
  2693. </div>
  2694. <div class="sec05-moblie-box col">
  2695. <div class="card">
  2696. <blockquote class="instagram-media"
  2697. data-instgrm-permalink="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2698. data-instgrm-version="13"
  2699. 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);">
  2700. <div style="padding:16px;"> <a
  2701. href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2702. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2703. target="_blank">
  2704. <div style=" display: flex; flex-direction: row; align-items: center;">
  2705. <div
  2706. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2707. </div>
  2708. <div
  2709. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2710. <div
  2711. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2712. </div>
  2713. <div
  2714. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2715. </div>
  2716. </div>
  2717. </div>
  2718. <div style="padding: 19% 0;"></div>
  2719. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2720. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2721. xmlns="https://www.w3.org/2000/svg"
  2722. xmlns:xlink="https://www.w3.org/1999/xlink">
  2723. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2724. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2725. <g>
  2726. <path
  2727. 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">
  2728. </path>
  2729. </g>
  2730. </g>
  2731. </g>
  2732. </svg></div>
  2733. <div style="padding-top: 8px;">
  2734. <div
  2735. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2736. 在 Instagram 查看這則貼文</div>
  2737. </div>
  2738. <div style="padding: 12.5% 0;"></div>
  2739. <div
  2740. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2741. <div>
  2742. <div
  2743. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2744. </div>
  2745. <div
  2746. 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;">
  2747. </div>
  2748. <div
  2749. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2750. </div>
  2751. </div>
  2752. <div style="margin-left: 8px;">
  2753. <div
  2754. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2755. </div>
  2756. <div
  2757. 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)">
  2758. </div>
  2759. </div>
  2760. <div style="margin-left: auto;">
  2761. <div
  2762. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2763. </div>
  2764. <div
  2765. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2766. </div>
  2767. <div
  2768. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2769. </div>
  2770. </div>
  2771. </div>
  2772. <div
  2773. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2774. <div
  2775. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2776. </div>
  2777. <div
  2778. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2779. </div>
  2780. </div>
  2781. </a>
  2782. <p
  2783. 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;">
  2784. <a href="https://www.instagram.com/p/CQYaQymFdq5/?utm_source=ig_embed&amp;utm_campaign=loading"
  2785. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2786. target="_blank">NFT ART 🎨(@nft__galaxy)分享的貼文</a>
  2787. </p>
  2788. </div>
  2789. </blockquote>
  2790. <script async src="//www.instagram.com/embed.js"></script>
  2791. </div>
  2792. </div>
  2793. <div class="sec05-moblie-box col">
  2794. <div class="card">
  2795. <blockquote class="instagram-media"
  2796. data-instgrm-permalink="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2797. data-instgrm-version="13"
  2798. 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);">
  2799. <div style="padding:16px;"> <a
  2800. href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2801. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2802. target="_blank">
  2803. <div style=" display: flex; flex-direction: row; align-items: center;">
  2804. <div
  2805. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2806. </div>
  2807. <div
  2808. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2809. <div
  2810. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2811. </div>
  2812. <div
  2813. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2814. </div>
  2815. </div>
  2816. </div>
  2817. <div style="padding: 19% 0;"></div>
  2818. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2819. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2820. xmlns="https://www.w3.org/2000/svg"
  2821. xmlns:xlink="https://www.w3.org/1999/xlink">
  2822. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2823. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2824. <g>
  2825. <path
  2826. 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">
  2827. </path>
  2828. </g>
  2829. </g>
  2830. </g>
  2831. </svg></div>
  2832. <div style="padding-top: 8px;">
  2833. <div
  2834. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2835. 在 Instagram 查看這則貼文</div>
  2836. </div>
  2837. <div style="padding: 12.5% 0;"></div>
  2838. <div
  2839. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2840. <div>
  2841. <div
  2842. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2843. </div>
  2844. <div
  2845. 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;">
  2846. </div>
  2847. <div
  2848. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2849. </div>
  2850. </div>
  2851. <div style="margin-left: 8px;">
  2852. <div
  2853. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2854. </div>
  2855. <div
  2856. 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)">
  2857. </div>
  2858. </div>
  2859. <div style="margin-left: auto;">
  2860. <div
  2861. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2862. </div>
  2863. <div
  2864. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2865. </div>
  2866. <div
  2867. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2868. </div>
  2869. </div>
  2870. </div>
  2871. <div
  2872. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2873. <div
  2874. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2875. </div>
  2876. <div
  2877. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2878. </div>
  2879. </div>
  2880. </a>
  2881. <p
  2882. 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;">
  2883. <a href="https://www.instagram.com/p/CQkUZiNnZg6/?utm_source=ig_embed&amp;utm_campaign=loading"
  2884. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2885. target="_blank">Yohann Schepacz - OYO(@yohannschepaczart)分享的貼文</a>
  2886. </p>
  2887. </div>
  2888. </blockquote>
  2889. <script async src="//www.instagram.com/embed.js"></script>
  2890. </div>
  2891. </div>
  2892. <div class="sec05-moblie-box col">
  2893. <div class="card">
  2894. <blockquote class="instagram-media"
  2895. data-instgrm-permalink="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2896. data-instgrm-version="13"
  2897. 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);">
  2898. <div style="padding:16px;"> <a
  2899. href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2900. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  2901. target="_blank">
  2902. <div style=" display: flex; flex-direction: row; align-items: center;">
  2903. <div
  2904. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  2905. </div>
  2906. <div
  2907. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  2908. <div
  2909. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  2910. </div>
  2911. <div
  2912. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  2913. </div>
  2914. </div>
  2915. </div>
  2916. <div style="padding: 19% 0;"></div>
  2917. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  2918. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  2919. xmlns="https://www.w3.org/2000/svg"
  2920. xmlns:xlink="https://www.w3.org/1999/xlink">
  2921. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  2922. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  2923. <g>
  2924. <path
  2925. 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">
  2926. </path>
  2927. </g>
  2928. </g>
  2929. </g>
  2930. </svg></div>
  2931. <div style="padding-top: 8px;">
  2932. <div
  2933. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  2934. 在 Instagram 查看這則貼文</div>
  2935. </div>
  2936. <div style="padding: 12.5% 0;"></div>
  2937. <div
  2938. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  2939. <div>
  2940. <div
  2941. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  2942. </div>
  2943. <div
  2944. 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;">
  2945. </div>
  2946. <div
  2947. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  2948. </div>
  2949. </div>
  2950. <div style="margin-left: 8px;">
  2951. <div
  2952. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  2953. </div>
  2954. <div
  2955. 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)">
  2956. </div>
  2957. </div>
  2958. <div style="margin-left: auto;">
  2959. <div
  2960. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  2961. </div>
  2962. <div
  2963. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  2964. </div>
  2965. <div
  2966. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  2967. </div>
  2968. </div>
  2969. </div>
  2970. <div
  2971. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  2972. <div
  2973. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  2974. </div>
  2975. <div
  2976. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  2977. </div>
  2978. </div>
  2979. </a>
  2980. <p
  2981. 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;">
  2982. <a href="https://www.instagram.com/p/CM49pX2FL9U/?utm_source=ig_embed&amp;utm_campaign=loading"
  2983. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  2984. target="_blank">NFT(@nft)分享的貼文</a>
  2985. </p>
  2986. </div>
  2987. </blockquote>
  2988. <script async src="//www.instagram.com/embed.js"></script>
  2989. </div>
  2990. </div>
  2991. <div class="sec05-moblie-box col">
  2992. <div class="card">
  2993. <blockquote class="instagram-media"
  2994. data-instgrm-permalink="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  2995. data-instgrm-version="13"
  2996. 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);">
  2997. <div style="padding:16px;"> <a
  2998. href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  2999. style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;"
  3000. target="_blank">
  3001. <div style=" display: flex; flex-direction: row; align-items: center;">
  3002. <div
  3003. style="background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;">
  3004. </div>
  3005. <div
  3006. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center;">
  3007. <div
  3008. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;">
  3009. </div>
  3010. <div
  3011. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;">
  3012. </div>
  3013. </div>
  3014. </div>
  3015. <div style="padding: 19% 0;"></div>
  3016. <div style="display:block; height:50px; margin:0 auto 12px; width:50px;"><svg
  3017. width="50px" height="50px" viewBox="0 0 60 60" version="1.1"
  3018. xmlns="https://www.w3.org/2000/svg"
  3019. xmlns:xlink="https://www.w3.org/1999/xlink">
  3020. <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  3021. <g transform="translate(-511.000000, -20.000000)" fill="#000000">
  3022. <g>
  3023. <path
  3024. 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">
  3025. </path>
  3026. </g>
  3027. </g>
  3028. </g>
  3029. </svg></div>
  3030. <div style="padding-top: 8px;">
  3031. <div
  3032. style=" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;">
  3033. 在 Instagram 查看這則貼文</div>
  3034. </div>
  3035. <div style="padding: 12.5% 0;"></div>
  3036. <div
  3037. style="display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;">
  3038. <div>
  3039. <div
  3040. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);">
  3041. </div>
  3042. <div
  3043. 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;">
  3044. </div>
  3045. <div
  3046. style="background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);">
  3047. </div>
  3048. </div>
  3049. <div style="margin-left: 8px;">
  3050. <div
  3051. style=" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;">
  3052. </div>
  3053. <div
  3054. 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)">
  3055. </div>
  3056. </div>
  3057. <div style="margin-left: auto;">
  3058. <div
  3059. style=" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);">
  3060. </div>
  3061. <div
  3062. style=" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);">
  3063. </div>
  3064. <div
  3065. style=" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);">
  3066. </div>
  3067. </div>
  3068. </div>
  3069. <div
  3070. style="display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;">
  3071. <div
  3072. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;">
  3073. </div>
  3074. <div
  3075. style=" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;">
  3076. </div>
  3077. </div>
  3078. </a>
  3079. <p
  3080. 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;">
  3081. <a href="https://www.instagram.com/p/CL7oXZSAyO_/?utm_source=ig_embed&amp;utm_campaign=loading"
  3082. style=" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;"
  3083. target="_blank">NFT(@nft)分享的貼文</a>
  3084. </p>
  3085. </div>
  3086. </blockquote>
  3087. <script async src="//www.instagram.com/embed.js"></script>
  3088. </div>
  3089. </div>
  3090. </div>
  3091. </div>
  3092. </div>
  3093. </section>
  3094. <!-- NFT資訊 -->
  3095. <section id="sec06">
  3096. <div class="container-fluid">
  3097. <h1>NFT資訊</h1>
  3098. <hr>
  3099. <div id="sec06-container" class="row">
  3100. <div class="col">
  3101. <div class="card">
  3102. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQEfCe0Wa6AbcoTq&w=1000&h=522&url=https%3A%2F%2Fstorage.googleapis.com%2Fwww-cw-com-tw%2Farticle%2F202103%2Farticle-6049c5a18f37c.jpg&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQGy_UtwawoXrsPb"
  3103. class="card-img-top" alt="...">
  3104. <div class="card-body">
  3105. <h5 class="card-title">誰要買這個啦!推特執行長賣推文「加密熱潮」新標的,NFT是什麼?</h5>
  3106. <p class="card-text">如果果你還沒聽過NFT,應該也快聽說了。NFT正在攻佔網路,並被認為是區塊鏈技術 (blockchain technology) 的最佳應用實例。</p>
  3107. <a target="https://www.facebook.com/nftboard/posts/105110191814016" href="https://www.facebook.com/nftboard/posts/105110191814016"><button class="learn-more">LearnMore</button></a>
  3108. </div>
  3109. </div>
  3110. </div>
  3111. <div class="col">
  3112. <div class="card">
  3113. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/201236812_115143364144032_8042637130702346240_n.png?_nc_cat=106&ccb=1-3&_nc_sid=730e14&_nc_ohc=wnzcy7cxZUEAX_BB-hm&_nc_ht=scontent.ftpe13-2.fna&oh=bb799ad063e1de0495c3fa4a220d4372&oe=60E1CE85"
  3114. class="card-img-top" alt="...">
  3115. <div class="card-body">
  3116. <h5 class="card-title">聊一聊NFT應用場景~門票/體育、活動門票系列</h5>
  3117. <p class="card-text">目前,門票偽造和大量囤票是一個亟需解決的大問題。NFT 在分佈式賬本上保存的記錄具有不可更改性,使得票據可以在區塊鏈上進行獨立驗證和認證,避免了作弊方法。</p>
  3118. <a target="https://www.facebook.com/nftboard/posts/115143380810697" href="https://www.facebook.com/nftboard/posts/115143380810697"><button class="learn-more">LearnMore</button></a>
  3119. </div>
  3120. </div>
  3121. </div>
  3122. <div class="col">
  3123. <div class="card">
  3124. <img src="./img/sec06.png"
  3125. class="card-img-top" alt="...">
  3126. <div class="card-body">
  3127. <h5 class="card-title">聊一聊NFT應用場景~紀錄/身分驗證、實體資產和文件記錄</h5>
  3128. <p class="card-text">NFT 可以將現實世界中的資產,如房產、股票或文件,如資質、執照、病歷、出生和死亡證明等,進行代幣化。NFT也可以應用於身份認證。提供完整記錄。</p>
  3129. <a target="https://www.facebook.com/nftboard/posts/115144517477250" href="https://www.facebook.com/nftboard/posts/115144517477250"><button class="learn-more">LearnMore</button></a>
  3130. </div>
  3131. </div>
  3132. </div>
  3133. <div class="col">
  3134. <div class="card">
  3135. <img src="./img/sec06-02webp.webp"
  3136. class="card-img-top" alt="...">
  3137. <div class="card-body">
  3138. <h5 class="card-title">聊一聊NFT應用場景~遊戲/藝術</h5>
  3139. <p class="card-text">NFT 主要應用場景之一就是遊戲。基於區塊鏈技術的NFT 能夠記錄玩家在遊戲內的狀態和成就,保存遊戲中獲得的物品清單,如武器、電源、車輛、角色等。</p>
  3140. <a target="https://www.facebook.com/nftboard/posts/115141257477576" href="https://www.facebook.com/nftboard/posts/115141257477576"><button class="learn-more">LearnMore</button></a>
  3141. </div>
  3142. </div>
  3143. </div>
  3144. <div class="col">
  3145. <div class="card">
  3146. <img src="./img/sec06-03.png"
  3147. class="card-img-top" alt="...">
  3148. <div class="card-body">
  3149. <h5 class="card-title">聊一聊NFT應用場景~音樂/虛擬世界</h5>
  3150. <p class="card-text">NFT 市場有望為音樂迷們打開虛擬收藏品的世界。在K-pop 領域,許多歌迷已經接受了NFT 收藏品這種形式——獨立發行的專輯備受追捧。NFT 另一個用例是創建虛擬世界。</p>
  3151. <a target="https://www.facebook.com/nftboard/posts/115141780810857" href="https://www.facebook.com/nftboard/posts/115141780810857"><button class="learn-more">LearnMore</button></a>
  3152. </div>
  3153. </div>
  3154. </div>
  3155. <div class="col">
  3156. <div class="card">
  3157. <img src="https://scontent.ftpe13-2.fna.fbcdn.net/v/t1.6435-9/199736752_115142487477453_8806712894992115858_n.png?_nc_cat=108&ccb=1-3&_nc_sid=730e14&_nc_ohc=f632SfbRzKoAX_CCRNo&_nc_ht=scontent.ftpe13-2.fna&oh=d3e9a6af8aca9151d5b8f8cf13c86340&oe=60E22786"
  3158. class="card-img-top" alt="...">
  3159. <div class="card-body">
  3160. <h5 class="card-title">聊一聊NFT應用場景~域名/技能</h5>
  3161. <p class="card-text">NFT 正是線上與線下對象銜接過程中真正缺失的環節,未來NFT 不僅會改變藝術,還將改變商業、金融、社會和文化。對於藝術和知識產權來說,免經審查的NFT 是一種寶貴財富和發展平台。</p>
  3162. <a target="https://www.facebook.com/nftboard/posts/115142517477450" href="https://www.facebook.com/nftboard/posts/115142517477450"><button class="learn-more">LearnMore</button></a>
  3163. </div>
  3164. </div>
  3165. </div>
  3166. <div class="col">
  3167. <div class="card">
  3168. <img src="./img/sec06-04.png"
  3169. class="card-img-top" alt="...">
  3170. <div class="card-body">
  3171. <h5 class="card-title">當下火熱的NFT有沒投資價值?一般人如何通過參與NFT獲得收益?</h5>
  3172. <p class="card-text">NFT就是去中心化金融Defi世界當中的【藝術品投資收藏市場】,但不同於傳統的藝術品投資,經過互聯網加持下的文化產品已經不再僅僅局限於收藏實體的藝術品。</p>
  3173. <a target="https://www.facebook.com/nftboard/posts/115135607478141" href="https://www.facebook.com/nftboard/posts/115135607478141"><button class="learn-more">LearnMore</button></a>
  3174. </div>
  3175. </div>
  3176. </div>
  3177. <div class="col">
  3178. <div class="card">
  3179. <img src="https://external.ftpe13-2.fna.fbcdn.net/safe_image.php?d=AQGPzKGLC4W9ZOtx&w=862&h=450&url=https%3A%2F%2Fwww.blockchainappfactory.com%2Fimages%2Fog_images%2Findex.png&cfs=1&ext=jpg&ccb=3-5&_nc_hash=AQE10mYSe0P8G-hh"
  3180. class="card-img-top" alt="...">
  3181. <div class="card-body">
  3182. <h5 class="card-title">聊一聊NFT應用場景時尚/娛樂</h5>
  3183. <p class="card-text">與時尚行業相關的NFT 也可以在以太坊區塊鍊網絡上投入使用,推出項目。現在,越來越多的NFT 項目與全球的時尚設計師進行合作,為他們提供知識產權保護。</p>
  3184. <a target="https://www.facebook.com/nftboard/posts/115144110810624" href="https://www.facebook.com/nftboard/posts/115144110810624"><button class="learn-more">LearnMore</button></a>
  3185. </div>
  3186. </div>
  3187. </div>
  3188. </div>
  3189. </div>
  3190. </section>
  3191. <!--sec07 table -電腦版 -->
  3192. <section id="sec07">
  3193. <div class="NFT-Collections-Sales-Volume">
  3194. <h1>NFT COLLECTIONS SALES VOLUME</h1>
  3195. </div>
  3196. <div class="container-fluid">
  3197. <table id="mytab" class="table">
  3198. <thead class="llll">
  3199. <tr class="small">
  3200. <th scope="col">#</th>
  3201. <th scope="col">Name</th>
  3202. <th scope="col">Assets</th>
  3203. <th scope="col">Collection<br>Net Worth</th>
  3204. <th scope="col">Volume(7d)</th>
  3205. <th scope="col">Sales(7d)</th>
  3206. <th scope="col">Volume(All Time)</th>
  3207. <th scope="col">Sales(All Time)</th>
  3208. <th scope="col">Last 7 Days</th>
  3209. </tr>
  3210. </thead>
  3211. <tbody>
  3212. <tr>
  3213. <th scope="row">1</th>
  3214. <td><img src="https://s3.coinmarketcap.com/generated/nft/collections/cryptopunks.png"
  3215. alt="">CryptoPunks</td>
  3216. <td>10000</td>
  3217. <td>$364,897,006.99 </td>
  3218. <td>$364,897,006.99 </td>
  3219. <td>14,022</td>
  3220. <td><img class="data-line"
  3221. src="https://s3.coinmarketcap.com/generated/sparklines/nft/collection/web/30d/cryptopunks.png"
  3222. alt=""></td>
  3223. </tr>
  3224. <tr>
  3225. <th scope="row">2</th>
  3226. <td><img src="https://s3.coinmarketcap.com/generated/nft/collections/artblocks.png" alt="">Art
  3227. Blocks</td>
  3228. <td>50,357</td>
  3229. <td>$39,478,456.73</td>
  3230. <td>$39,478,456.73 </td>
  3231. <td>67,921</td>
  3232. <td><img class="data-line"
  3233. src="https://s3.coinmarketcap.com/generated/sparklines/nft/collection/web/30d/artblocks.png"
  3234. alt=""></td>
  3235. </tr>
  3236. <tr>
  3237. <th scope="row">3</th>
  3238. <td><img src="https://s3.coinmarketcap.com/generated/nft/collections/sorare.png" alt="">Sorare
  3239. </td>
  3240. <td>310,463</td>
  3241. <td>$71,376,688.34 </td>
  3242. <td>$71,376,688.34 </td>
  3243. <td>389,959 </td>
  3244. <td><img class="data-line"
  3245. src="https://s3.coinmarketcap.com/generated/sparklines/nft/collection/web/30d/sorare.png"
  3246. alt=""></td>
  3247. </tr>
  3248. <tr>
  3249. <th scope="row">4</th>
  3250. <td> <img src="https://s3.coinmarketcap.com/generated/nft/collections/thesandbox.png" alt="">The
  3251. Sandbox</td>
  3252. <td>87,420</td>
  3253. <td>$29,148,868.09 </td>
  3254. <td>$29,148,868.09 </td>
  3255. <td>94,561 </td>
  3256. <td><img class="data-line"
  3257. src="https://s3.coinmarketcap.com/generated/sparklines/nft/collection/web/30d/thesandbox.png"
  3258. alt=""></td>
  3259. </tr>
  3260. </tbody>
  3261. </table>
  3262. <div class="sec07-table-button">
  3263. <button class="showdata data-button">完整數據</button>
  3264. </div>
  3265. </div>
  3266. </section>
  3267. <!-- sec07 table -手機板標題 -->
  3268. <section id="sec07-moblir-title">
  3269. <div id="sec07-container" class="container-fluid">
  3270. <h1>NFT</h1>
  3271. <h1>COLLECTIONS</h1>
  3272. <h1>SALES VOLUME</h1>
  3273. </div>
  3274. </section>
  3275. <!-- sec07 table -手機板 -->
  3276. <section id="sec07-moblie">
  3277. <div class="container-fluid">
  3278. <table id="mytab" class="table">
  3279. <thead class="llll">
  3280. <tr>
  3281. <th scope="col">#</th>
  3282. <th scope="col">Name</th>
  3283. <th scope="col">Assets</th>
  3284. <th scope="col">Last 7 Days</th>
  3285. </tr>
  3286. </thead>
  3287. <tbody id="mobile">
  3288. </tbody>
  3289. </table>
  3290. <div class="sec07-table-button">
  3291. <button class="showdata data-button">完整數據</button>
  3292. </div>
  3293. </div>
  3294. </section>
  3295. <!-- footer -->
  3296. <footer id="footer" class="container-fluid" style="padding:0;margin:0">
  3297. <div class="footer-link">
  3298. <a href=""><span>|</span>粉絲專頁<span>|</span></a>
  3299. <a href=""><span>|</span>OpenTalk<span>|</span></a>
  3300. <a href=""><span>|</span>Ark.cards<span>|</span></a>
  3301. <a href=""><span>|</span>NFTfair.art<span>|</span></a>
  3302. </div>
  3303. <div class="text">
  3304. <h2>客服電話:0988268521</h2>
  3305. <h2>客服信箱:elainsmail@gmail.com</h2>
  3306. <h2 style="display: block;">公司名稱:微生活知識科技公司</h2>
  3307. <p>開拓Open Talk &copy; All Rights Reserved.</p>
  3308. </div>
  3309. </footer>
  3310. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
  3311. integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
  3312. crossorigin="anonymous"></script>
  3313. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
  3314. integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
  3315. crossorigin="anonymous"></script>
  3316. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  3317. <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
  3318. <script src="./goto.js"></script>
  3319. <script>
  3320. $(document).ready(function() {
  3321. function get_data(limit=5) {
  3322. var mobile_temp = '';
  3323. var pc_temp = '';
  3324. $.get("https://api.coinmarketcap.com/data-api/v3/nft/collections?start=0&limit=" + limit, function(result) {
  3325. for(var i=0; i < limit; i++) {
  3326. var obj = result.data.collections[i];
  3327. var rank = obj.rank;
  3328. var slug = obj.slug;
  3329. var logo = 'https://s3.coinmarketcap.com/generated/nft/collections/' + slug + '.png';
  3330. var website = obj.website;
  3331. var name = obj.name;
  3332. var assets = obj.transferUniqueAssetsAT;
  3333. var collection_net_worth = obj.netWorth;
  3334. var volume_7d = obj.volume7d;
  3335. var sales_7d = obj.sales7d;
  3336. var volume_all_time = obj.volumeAT;
  3337. var sales_all_time = obj.salesAT;
  3338. var last_7_days = 'https://s3.coinmarketcap.com/generated/sparklines/nft/collection/web/30d/' + slug +'.png';
  3339. mobile_temp += ' \
  3340. <tr> \
  3341. <th scope="row">' + rank + '</th> \
  3342. <td><a href="' + website + '" target="_blank" style="text-decoration: none;color:black;"><img class="me-2 img-fluid" src="' + logo + '" alt="' + name + '">' + name + '</a></td> \
  3343. <td>' + assets + '</td> \
  3344. <td><img class="data-line" src="' + last_7_days + '" alt="' + name + '"></td> \
  3345. </tr>';
  3346. pc_temp += ' \
  3347. <tr class="small"> \
  3348. <th scope="row">' + rank + '</th> \
  3349. <td><a href="' + website + '" target="_blank" style="text-decoration: none;color:black;"><img class="me-2" src="' + logo + '" alt="' + name + '" style="height:40px;width:auto;">' + name + '</a></td> \
  3350. <td>' + assets + '</td> \
  3351. <td>' + collection_net_worth + '</td> \
  3352. <td>' + volume_7d + '</td> \
  3353. <td>' + sales_7d + '</td> \
  3354. <td>' + volume_all_time + '</td> \
  3355. <td>' + sales_all_time + '</td> \
  3356. <td><img class="data-line" src="' + last_7_days + '" alt="' + name + '"></td> \
  3357. </tr>';
  3358. }
  3359. $('#mobile').html(mobile_temp);
  3360. $('#pc').html(pc_temp);
  3361. });
  3362. }
  3363. get_data();
  3364. // 完整數據
  3365. $('.showdata').click(function() {
  3366. get_data(100);
  3367. });
  3368. });
  3369. </script>
  3370. </body>
  3371. </html>