index.html 339 KB

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