{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"admin","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/registrar\/","title":"COVID-19\u5bf9\u98df\u54c1\u884c\u4e1a\u6709\u4f55\u5f71\u54cd\uff1f","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"GgIlBpby3B\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/how-covid-19-is-affecting-the-food-industry\/\">COVID-19\u5bf9\u98df\u54c1\u884c\u4e1a\u6709\u4f55\u5f71\u54cd\uff1f<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/how-covid-19-is-affecting-the-food-industry\/embed\/#?secret=GgIlBpby3B\" width=\"600\" height=\"338\" title=\"&#8220;COVID-19\u5bf9\u98df\u54c1\u884c\u4e1a\u6709\u4f55\u5f71\u54cd\uff1f&#8221; &#8212; Registrar\" data-secret=\"GgIlBpby3B\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2020\/05\/2766-2.jpg","thumbnail_width":2560,"thumbnail_height":1051,"description":"Registrar Corp\u610f\u8bc6\u5230\u6709\u5f88\u591a\u5173\u4e8e\u65b0\u51a0\u75ab\u60c5\u5982\u4f55\u5f71\u54cd\u98df\u54c1\u884c\u4e1a\u7684\u62c5\u5fe7\u548c\u95ee\u9898\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u8ba8\u8bba\u5927\u6d41\u884c\u5982\u4f55\u5f71\u54cd\u98df\u54c1\u5b89\u5168\u548c\u4f9b\u5e94\u3002 COVID-19\u4e0d\u662f\u4e00\u79cd\u98df\u6e90\u6027\u75be\u75c5 \u5728COVID-19\u671f\u95f4\uff0c\u98df\u54c1\u884c\u4e1a\u6700\u5173\u6ce8\u7684\u95ee\u9898\u4e4b\u4e00\u662f\u75c5\u6bd2\u662f\u5426\u80fd\u901a\u8fc7\u98df\u54c1\u4f20\u64ad\u3002\u7f8e\u56fd\u75be\u75c5\u63a7\u5236\u4e2d\u5fc3(CDC)\u8868\u793a\uff0c\u201c\u76ee\u524d\u6ca1\u6709\u8bc1\u636e\u652f\u6301\u4e0e\u98df\u7269\u6709\u5173\u7684COVID-19\u4f20\u64ad\u3002\u201d \u98df\u54c1\u9700\u6c42\u91cf\u5f88\u5927 \u5728\u65b0\u51a0\u80ba\u708e\u5927\u6d41\u884c\u671f\u95f4\uff0c\u5bf9\u67d0\u4e9b\u98df\u54c1\u7684\u9700\u6c42\u6bd4\u4ee5\u5f80\u4efb\u4f55\u65f6\u5019\u90fd\u9ad8\u3002\u7f8e\u56fd\u5404\u5730\u7684\u96f6\u552e\u5546\u7684\u8c46\u7c7b\u3001\u9e21\u86cb\u548c\u5927\u7c73\u7b49\u5546\u54c1\u90fd\u5356\u5149\u4e86\u3002\u751a\u81f3\u5bf9\u9152\u7cbe\u7684\u9700\u6c42\u4e5f\u5728\u589e\u52a0\u3002\u6b64\u5916\uff0c\u7f50\u88c5\u98df\u54c1\u548c\u5305\u88c5\u98df\u54c1\uff0c\u5982\u9762\u6761\uff0c\u7531\u4e8e\u5176\u8f83\u957f\u7684\u8d27\u67b6\u5bff\u547d\u548c\u4f5c\u4e3a\u4e3b\u98df\u7684\u5730\u4f4d\uff0c\u4e5f\u5728\u5927\u91cf\u9500\u552e\u3002\u56e0\u6b64\uff0c\u636e\u62a5\u9053\u50cf\u901a\u7528\u78e8\u574a\uff08General Mills\uff09\u548c\u91d1\u5b9d\u6c64\uff08Campbell Soup \uff09\u8fd9\u4e9b\u54c1\u724c\u5728\u56db\u5468\u65f6\u95f4\u5185\u7684\u98df\u54c1\u9500\u552e\u989d\u6da8\u5e45\u8d85\u8fc760%\u3002 \u201c\u51e0\u4e4e\u6211\u4eec\u6240\u6709\u7684\u5de5\u5382\u90fd\u5728\u6ee1\u8d1f\u8377\u8fd0\u8f6c\uff0c\u201d\u7ea6\u7ff0\u00b7\u4e18\u5947\uff0c\u901a\u7528\u78e8\u574a\u516c\u53f8\u7684\u9996\u5e2d\u4f9b\u5e94\u94fe\u603b\u76d1\u5728\u63a5\u53d7\u300a\u7ebd\u7ea6\u65f6\u62a5\u300b\u91c7\u8bbf\u65f6\u8868\u793a\u3002\u5c3d\u7ba1\u5982\u6b64\uff0c\u96f6\u552e\u5546\u4eec\u8fd8\u662f\u5f88\u96be\u4fdd\u8bc1\u7f50\u88c5\u98df\u54c1\u7684\u4f9b\u5e94\uff0c\u8bb8\u591a\u96f6\u552e\u5546\u8fd8\u9650\u5b9a\u4e86\u8d2d\u4e70\u6570\u91cf\u3002\u7531\u4e8e\u9700\u6c42\u91cf\u5de8\u5927\uff0c\u5bf9\u7ee7\u7eed\u8fdb\u53e3\u98df\u54c1\u7684\u9700\u6c42\u53ef\u80fd\u4e5f\u4f1a\u5f88\u9ad8\u3002\u60f3\u8981\u5bfb\u6c42\u51fa\u53e3\u8d27\u67b6\u7a33\u5b9a\u7684\u7f50\u5934\u98df\u54c1\u5236\u9020\u5546\u9700\u8981\u6ce8\u610f\uff0c\u7f8e\u56fd\u98df\u54c1\u548c\u836f\u54c1\u7ba1\u7406\u5c40\uff08FDA\uff09\u8981\u6c42\uff0c\u7f50\u5934\u98df\u54c1\u751f\u4ea7\u5546\u5fc5\u987b\u8981\u5728FDA\u8fdb\u884c\u7f50\u5934\u98df\u54c1\u4f01\u4e1a\uff08FCE\uff09\u6ce8\u518c\u624d\u80fd\u5728\u7f8e\u56fd\u9500\u552e\u7f50\u5934\u98df\u54c1\u3002 \u540c\u65f6\uff0c\u5bf9\u5065\u5eb7\u4ea7\u54c1\u7684\u9700\u6c42\u4e5f\u5728\u589e\u52a0\u3002\u968f\u7740\u5bf9\u725b\u6cb9\u679c\u9700\u6c42\u7684\u589e\u52a0\uff0c\u725b\u6cb9\u679c\u7684\u4ef7\u683c\u4e00\u76f4\u5728\u4e0a\u6da8\u3002\u603b\u7684\u6765\u8bf4\uff0c\u7f8e\u56fd\u7684\u519c\u4ea7\u54c1\u9500\u91cf\u5f88\u5927\u3002\u8fd9\u4e00\u589e\u957f\u53ef\u80fd\u662f\u6d88\u8d39\u8005\u60f3\u8981\u63d0\u9ad8\u5bf9\u75c5\u6bd2\u7684\u514d\u75ab\u529b\u800c\u5bfc\u81f4\u7684\u7ed3\u679c\u3002 \u5e76\u975e\u5bf9\u6240\u6709\u98df\u54c1\u7684\u9700\u6c42\u90fd\u51fa\u73b0\u4e86\u8fd9\u79cd\u589e\u957f;\u5962\u4f88\u98df\u54c1\u7684\u9500\u91cf\u4e00\u76f4\u5728\u4e0b\u964d\u3002\u6d88\u8d39\u8d8b\u52bf\u8868\u660e\uff0c\u7531\u4e8eCOVID-19\u75ab\u60c5\uff0c\u4eba\u4eec\u7684\u5de5\u4f5c\u65f6\u95f4\u51cf\u5c11\uff0c\u4ed6\u4eec\u7684\u6d88\u8d39\u4e5f\u51cf\u5c11\uff0c\u591a\u6570\u4eba\u53ea\u8d2d\u4e70\u5fc5\u9700\u54c1\u3002\u4e00\u4f4d\u4e1a\u5185\u4e13\u5bb6\u6307\u51fa\uff0c\u5e97\u5185\u8d2d\u7269\u8005\u201c\u8fdb\u51fa\u8fc5\u901f\uff0c\u8d2d\u4e70\u4e3b\u8981\u98df\u54c1\uff0c\u5982\u610f\u5927\u5229\u9762\u3001\u8c46\u7c7b\u3001\u9762\u7c89\u3001\u5927\u7c73\u3001\u74f6\u88c5\u9171\u6c41\u3001\u7f50\u88c5\u852c\u83dc\u548c\u7f50\u88c5\u6d77\u9c9c\u201d\u3002\u5728\u5f88\u5927\u7a0b\u5ea6\u4e0a\uff0c\u51b2\u52a8\u6d88\u8d39\u5df2\u7ecf\u6d88\u5931\u4e86\u3002\u201d\u5f53\u4e00\u5207\u6062\u590d\u6b63\u5e38\u65f6\uff0c\u6d88\u8d39\u8005\u53ef\u80fd\u4f1a\u91cd\u65b0\u5f00\u59cb\u8fdb\u884c\u63a2\u7d22\u548c\u51b2\u52a8\u6d88\u8d39\u3002\u5728\u65b0\u51a0\u80ba\u708e\u75ab\u60c5\u51cf\u7f13\u540e\uff0c\u66f4\u591a\u7684\u6d88\u8d39\u8005\u53ef\u80fd\u4f1a\u518d\u6b21\u8d2d\u4e70\u5962\u4f88\u98df\u54c1\u548c\u7279\u8272\u98df\u54c1\uff0c\u5c24\u5176\u662f\u5728\u5047\u671f\u671f\u95f4\u3002 \u4f9b\u5e94\u94fe\u6b63\u5728\u6269\u5f20 \u65b0\u51a0\u80ba\u708e\u75ab\u60c5\u8feb\u4f7f\u4e00\u4e9b\u96f6\u552e\u5546\u4ece\u5176\u4ed6\u98df\u54c1\u4f9b\u5e94\u5546\u5904\u91c7\u8d2d\u9ad8\u9700\u6c42\u98df\u54c1\uff0c\u56e0\u4e3a\u73b0\u6709\u4f9b\u5e94\u5546\u5728\u6ee1\u8db3\u6d88\u8d39\u8005\u9700\u6c42\u65b9\u9762\u9047\u5230\u4e86\u6311\u6218\u3002\u5f53\u88ab\u95ee\u53ca\u5979\u5728\u4f9b\u5e94\u94fe\u95ee\u9898\u4e0a\u7684\u7ecf\u9a8c\u65f6\uff0c\u52a0\u5dde\u4e00\u5bb6\u8fde\u9501\u5e02\u573a\u7684\u526f\u603b\u88c1\u8868\u793a:\u201c\u2026\u2026\u4e00\u5f00\u59cb\uff0c\u6211\u4eec\u7684\u4e3b\u8981\u4ea7\u54c1\uff0c\u5982\u610f\u5927\u5229\u9762\u548c\u8c46\u7c7b\uff0c\u786e\u5b9e\u5b58\u5728\u4e00\u4e9b\u95ee\u9898\uff0c\u4f46\u6211\u4eec\u5f88\u5feb\u5c31\u5ea6\u8fc7\u4e86\u77ed\u7f3a\u671f\uff0c\u80fd\u591f\u627e\u5230\u8fd9\u4e9b\u4ea7\u54c1\u7684\u4e0d\u540c\u6765\u6e90\u3002\u201d\u5982\u679c\u4f60\u751f\u4ea7\u8fd9\u4e9b\u9ad8\u9700\u6c42\u7684\u4ea7\u54c1\uff0c\u73b0\u5728\u662f\u8fdb\u5165\u65b0\u5e02\u573a\u7684\u597d\u65f6\u673a\u3002 \u7279\u522b\u662f\u7f8e\u56fd\u8089\u7c7b\u52a0\u5de5\u4e1a\uff0c\u6700\u8fd1\u4e00\u4e9b\u5927\u578b\u5de5\u5382\u5173\u95ed\u4e86\uff0c\u4f7f\u751f\u4ea7\u7ebf\u96be\u4ee5\u7ee7\u7eed\u8fd0\u8f6c\u3002\u8fd9\u4e3a\u7f8e\u56fd\u5e02\u573a\u589e\u52a0\u8089\u7c7b\u8fdb\u53e3\u521b\u9020\u4e86\u673a\u4f1a\u3002 COVID-19\u5bf9\u98df\u54c1\u884c\u4e1a\u7684\u957f\u671f\u5f71\u54cd \u4e13\u5bb6\u4eec\u5e76\u4e0d\u786e\u5b9a\u672a\u6765\u4f1a\u53d1\u751f\u4ec0\u4e48\uff0c\u4f46\u4ed6\u4eec\u5efa\u8bae\u8bf4\uff0c\u201c\u5176\u4e2d\u4e00\u4e9b\u8d8b\u52bf\u53ef\u80fd\u4f1a\u6301\u7eed\u4e0b\u53bb\u3002\u201d\u73b0\u5728\u6709\u4e9b\u4eba\u53c8\u5f00\u59cb\u5403\u5305\u88c5\u98df\u54c1\u4e86\uff0c\u4ed6\u4eec\u53ef\u80fd\u4f1a\u60ca\u8bb6\u4e8e\u8fd9\u4e9b\u4ea7\u54c1\u7684\u8d28\u91cf\u6539\u5584\uff0c\u751a\u81f3\u5728\u68c0\u75ab\u9694\u79bb\u7ed3\u675f\u540e\u8fd8\u4f1a\u7ee7\u7eed\u8d2d\u4e70\u3002\u5728\u5c01\u9501\u7ed3\u675f\u540e\uff0c\u66f4\u591a\u7684\u4eba\u4e5f\u53ef\u80fd\u4e5f\u4f1a\u7ee7\u7eed\u5728\u5bb6\u505a\u996d\u3002 \u5c3d\u7ba1\u51fa\u73b0\u6d41\u884c\u75c5\uff0c\u4f46\u4eba\u4eec\u5fc5\u987b\u5403\u996d\uff0c\u7f8e\u56fd\u98df\u54c1\u5236\u9020\u5546\u7684\u4f9b\u5e94\u94fe\u4e2d\u5b58\u5728\u5927\u91cf\u673a\u4f1a\u3002\u56e0\u6b64\uff0c\u5bf9\u4e8e\u4f01\u4e1a\u6765\u8bf4\uff0c\u4fdd\u6301\u4ed6\u4eec\u7684FDA\u6ce8\u518c\u7684\u6709\u6548\u6027\u548c\u65f6\u6548\u6027\u662f\u5f88\u91cd\u8981\u7684\u3002\u5373\u4f7f\u76ee\u524d\u4f60\u7684\u51fa\u8d27\u91cf\u653e\u7f13\uff0c\u4f60\u5e94\u8be5\u4e3a\u4e0d\u53ef\u907f\u514d\u7684\u53cd\u5f39\u505a\u597d\u51c6\u5907\uff0c\u56e0\u4e3a\u7f8e\u56fd\u7684\u5e93\u5b58\u9700\u8981\u8865\u5145\u3002 \u867d\u7136\u5728COVID\u671f\u95f4\uff0c\u5176\u4ed6\u53d7FDA\u76d1\u7ba1\u7684\u884c\u4e1a\u7684\u76d1\u7ba1\u6709\u6240\u53d8\u5316\uff0c\u4f46FDA\u5bf9\u98df\u54c1\u7684\u76d1\u7ba1\u4e5f\u5728\u53d1\u751f\u53d8\u5316\u3002\u4f01\u4e1a\u4ecd\u7136\u5fc5\u987b\u4fdd\u8bc1\u5176\u6ce8\u518c\u662f\u6709\u6548\u7684\uff0c\u5e76\u4e14\u4ea7\u54c1\u4e5f\u9700\u8981\u6b63\u786e\u8d34\u6807\u3002Registrar Corp\u5728\u75ab\u60c5\u671f\u95f4\u6b63\u5e38\u8fd0\u8f6c\uff0c\u56e0\u6b64\u53ef\u4ee5\u5728\u8fd9\u4e2a\u5145\u6ee1\u53d8\u6570\u7684\u65f6\u95f4\u6bb5\u5185\u4e3a\u8d35\u53f8\u5411FDA\u8fdb\u884c\u6ce8\u518c\u3002\u73b0\u5728\u5c31\u8054\u7cfbRegistrar Corp\uff0c\u8ba9\u6211\u4eec\u7ecf\u9a8c\u4e30\u5bcc\u7684\u4e13\u5bb6\u6307\u5bfc\u8d35\u53f8\u5b8c\u6210\u6ce8\u518c\u6d41\u7a0b\u3002\u8bf7\u81f4\u7535+1-757-224-0177\u6216\u53d1\u90ae\u4ef6\u81f3info@registrarcorp.com\u4e0e\u6211\u4eec\u8054\u7cfb\u3002"}