index.html 318 KB

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