index.html 342 KB

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