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