index.html 324 KB

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