{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"Mason Grandusky","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/mgrandusky\/","title":"\u8fdb\u53e3\u5ba0\u7269\u98df\u54c1\u548c\u52a8\u7269\u9972\u6599","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"PmaU9NNoad\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/importing-pet-food-animal-feed\/\">\u8fdb\u53e3\u5ba0\u7269\u98df\u54c1\u548c\u52a8\u7269\u9972\u6599<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/importing-pet-food-animal-feed\/embed\/#?secret=PmaU9NNoad\" width=\"600\" height=\"338\" title=\"&#8220;\u8fdb\u53e3\u5ba0\u7269\u98df\u54c1\u548c\u52a8\u7269\u9972\u6599&#8221; &#8212; Registrar\" data-secret=\"PmaU9NNoad\" 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\/2022\/05\/cute-dog-eating-out-food-bowl-scaled-e1653594999677.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"\u52a8\u7269\u9972\u6599\u662f\u4f9b\u52a8\u7269\u98df\u7528\u7684\u98df\u54c1\uff0c\u5305\u62ec\u5ba0\u7269\u98df\u54c1\u548c\u96f6\u98df\u4ee5\u53ca\u519c\u573a\u52a8\u7269\u98df\u54c1\u3002\u7f8e\u56fdFDA\u517d\u836f\u4e2d\u5fc3(CVM)\u8d1f\u8d23\u76d1\u7ba1\u5728\u7f8e\u56fd\u6d88\u8d39\u7684\u52a8\u7269\u9972\u6599\uff0c\u5305\u62ec\u9e21\u3001\u706b\u9e21\u3001\u725b\u3001\u732a\u3001\u7f8a\u3001\u9c7c\u3001\u72d7\u3001\u732b\u548c\u9a6c\u7684\u9972\u6599\u3002\u4ed6\u4eec\u6709\u8d23\u4efb\u786e\u4fdd\u52a8\u7269\u9972\u6599\u4ea7\u54c1\u662f\u5b89\u5168\u7684\uff0c\u4ee5\u536b\u751f\u7684\u65b9\u5f0f\u751f\u4ea7\uff0c\u5e76\u8d34\u4e0a\u9002\u5f53\u7684\u6807\u7b7e\u3002 \u83b7\u5f97FDA\u5408\u89c4\u65b9\u9762\u7684\u5e2e\u52a9\u3002 Registrar Corp\u7684\u98df\u54c1\u5b89\u5168\u4e13\u5bb6\u53ef\u4ee5\u5236\u5b9a\u3001\u5ba1\u67e5\u6216\u5b9e\u65bd FSVPs\uff0c\u4ee5\u7b26\u5408FDA\u7684\u8981\u6c42\uff0c\u5e2e\u52a9\u60a8\u63d0\u4ea4\u9884\u5148\u7533\u62a5\uff0c\u7b49\u7b49\u3002 \u6b32\u4e86\u89e3\u66f4\u591a\u4fe1\u606f\uff0c\u8bf7\u81f4\u7535+1-757-224-0177\uff0c\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u81f3info@registrarcorp.com\u8054\u7cfb\u6211\u4eec\uff0c\u6216\u901a\u8fc7regstaging.wpengine.com\/livechat\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5373\u65f6\u804a\u5929\u3002 \u83b7\u5f97\u5e2e\u52a9 \u52a8\u7269\u98df\u54c1\u8fdb\u53e3\u5546\u5fc5\u987b\u9075\u5b88\u300a\u98df\u54c1\u8fdb\u53e3\u5546\u5916\u56fd\u4f9b\u5e94\u5546\u9a8c\u8bc1\u8ba1\u5212\u6761\u4f8b\u300b(FSVP\u89c4\u5219)\u3002\u8bf7\u7ee7\u7eed\u9605\u8bfb\uff0c\u4e86\u89e3\u66f4\u591a\u76f8\u5173\u7684\u8981\u6c42\u548c\u6d41\u7a0b\u3002 \u6ce8\u518c \u5728\u7f8e\u56fd\u751f\u4ea7\u3001\u52a0\u5de5\u3001\u5305\u88c5\u6216\u50a8\u5b58\u7528\u4e8e\u6d88\u8d39\u7684\u52a8\u7269\u98df\u54c1\u7684\u4f01\u4e1a\u5fc5\u987b\u5411FDA\u8fdb\u884c\u52a8\u7269\u98df\u54c1\u4f01\u4e1a\u6ce8\u518c\u3002\u8fdb\u53e3\u5546\u5fc5\u987b\u786e\u4fdd\u4ed6\u4eec\u4ece\u5df2\u5728FDA\u6ce8\u518c\u7684\u5de5\u5382\u8fdb\u53e3\u4ea7\u54c1\u3002\u5982\u679cFDA\u53d1\u73b0\u5916\u56fd\u98df\u54c1\u8bbe\u65bd\u6ca1\u6709\u6ce8\u518c\uff0c\u8fdb\u53e3\u7684\u98df\u54c1\u5c06\u88ab\u6263\u7559\u5728\u5165\u5883\u53e3\u5cb8\u3002\u5728\u8fd9\u79cd\u60c5\u51b5\u4e0b\uff0c\u5728\u56fd\u5916\u5de5\u5382\u5b8c\u6210\u6ce8\u518c\u5e76\u5411FDA\u63d0\u4f9b\u6ce8\u518c\u53f7\u4ee5\u53caFDA\u8981\u6c42\u7684\u4efb\u4f55\u5176\u4ed6\u4fe1\u606f\u4e4b\u524d\uff0c\u8be5\u98df\u54c1\u4e0d\u4f1a\u653e\u884c\u7ed9\u8fdb\u53e3\u5546\u3002 \u9884\u5148\u7533\u62a5 \u5728\u5de5\u5382\u5411\u7f8e\u56fd\u8f93\u9001\u98df\u54c1\u4e4b\u524d\uff0cFDA\u8981\u6c42\u63d0\u4ea4\u9884\u5148\u7533\u62a5\u901a\u77e5FDA\u8d27\u7269\u5373\u5c06\u5230\u8fbe\u3002\u4efb\u4f55\u4e86\u89e3\u8d27\u7269\u4fe1\u606f\u7684\u4eba\uff0c\u5305\u62ec\u8fdb\u53e3\u5546\uff0c\u90fd\u53ef\u4ee5\u63d0\u4ea4\u9884\u5148\u7533\u62a5\u3002 \u9884\u5148\u7533\u62a5\u5fc5\u987b\u6309\u5982\u4e0b\u65f6\u95f4\u622a\u70b9\u63d0\u524d\u63d0\u4ea4\u7ed9FDA: \u5982\u679c\u8d70\u9646\u8def\uff0c\u81f3\u5c11\u63d0\u524d\u4e24\u4e2a\u5c0f\u65f6 \u5982\u679c\u4e58\u98de\u673a\u6216\u706b\u8f66\u5230\u8fbe\uff0c\u81f3\u5c11\u9700\u8981\u63d0\u524d4\u4e2a\u5c0f\u65f6 \u5982\u679c\u6c34\u8def\u5230\u8fbe\uff0c\u81f3\u5c11\u9700\u8981\u63d0\u524d\u516b\u4e2a\u5c0f\u65f6 \u5bf9\u4e8e\u901a\u8fc7\u56fd\u9645\u90ae\u4ef6\u5230\u8fbe\u7684\u8d27\u4ef6\uff0c\u5e94\u5728\u5305\u88f9\u53d1\u8d27\u524d\u63d0\u4ea4\u9884\u5148\u7533\u62a5\u3002 \u62a5\u5173\u5458\/\u7533\u62a5\u5458 \u6240\u6709\u8fdb\u5165\u7f8e\u56fd\u7684\u8d27\u7269\u5fc5\u987b\u5411\u7f8e\u56fd\u6d77\u5173\u548c\u8fb9\u5883\u4fdd\u62a4\u5c40(CBP)\u7533\u62a5\u3002\u8fd9\u4e2a\u8fc7\u7a0b\u5305\u62ec\u901a\u8fc7ACE(\u81ea\u52a8\u5316\u5546\u4e1a\u73af\u5883)\u7cfb\u7edf\u63d0\u4ea4\u5b8c\u6574\u7684\u5165\u5883\u6587\u4ef6\u548c\u4fe1\u606f\u3002\u4e3a\u4e86\u6210\u529f\u5165\u5883\uff0c\u5411CBP\u63d0\u4ea4\u4e00\u4efd\u6b63\u786e\u5b8c\u6574\u7684\u5165\u5883\u7533\u8bf7\u662f\u5f88\u91cd\u8981\u7684\u3002\u8bb8\u591a\u8fdb\u53e3\u5546\u5c06\u62a5\u5173\u8fc7\u7a0b\u5916\u5305\u7ed9\u62a5\u5173\u884c\u6216\u62a5\u5173\u516c\u53f8\uff0c\u62a5\u5173\u884c\u6216\u62a5\u5173\u516c\u53f8\u534f\u52a9\u8fdb\u53e3\u5546\u63d0\u4ea4CBP\u8981\u6c42\u7684\u62a5\u5173\u4fe1\u606f\u548c\u4ed8\u6b3e\u3002 \u63d0\u4ea4\u9884\u5148\u7533\u62a5\u540e\uff0cFDA\u5c06\u5ba1\u67e5\u4ea7\u54c1\u7684\u5408\u89c4\u6027\u3002\u5982\u679c\u8be5\u673a\u6784\u53d1\u73b0\u4ea7\u54c1\u8fdd\u53cd\u4e86\u9002\u7528\u7684FDA\u6cd5\u5f8b\u548c\u6cd5\u89c4\uff0c\u5982\u679c\u95ee\u9898\u65e0\u6cd5\u7ea0\u6b63\uff0c\u8d27\u7269\u53ef\u80fd\u4f1a\u88ab\u6263\u7559\u5e76\u6700\u7ec8\u88ab\u62d2\u7edd\u5165\u5883\u3002 \u6210\u5206 \u52a8\u7269\u98df\u54c1\u4e2d\u4f7f\u7528\u7684\u6210\u5206\u5fc5\u987b\u662f\u7ecf\u6279\u51c6\u7684\u98df\u54c1\u6dfb\u52a0\u5242\uff0c\u901a\u5e38\u88ab\u8ba4\u4e3a\u662f\u5b89\u5168\u7684(GRAS)\uff0c\u6216\u8005\u7b26\u5408\u7f8e\u56fd\u9972\u6599\u63a7\u5236\u5b98\u5458\u534f\u4f1a(AAFCO)\u5b98\u65b9\u51fa\u7248\u7269(OP)\u4e2d\u516c\u5e03\u7684\u53ef\u63a5\u53d7\u6210\u5206\u7684\u540d\u79f0\u548c\u5b9a\u4e49\u3002\u8fdb\u53e3\u5546\u5e94\u8be5\u77e5\u9053\uff0c\u4e00\u4e9b\u88ab\u6279\u51c6\u7528\u4e8e\u4eba\u7c7b\u98df\u54c1\u7684\u6210\u5206\u88ab\u8ba4\u4e3a\u5728\u52a8\u7269\u98df\u54c1\u4e2d\u4f7f\u7528\u662f\u4e0d\u5b89\u5168\u7684\u3002 FDA\u7684\u517d\u836f\u4e2d\u5fc3\u4e5f\u7ba1\u7406\u52a0\u836f\u9972\u6599\u4e2d\u4f7f\u7528\u7684\u52a8\u7269\u836f\u7269\u3002\u8fd9\u4e9b\u836f\u7269\u5fc5\u987b\u88ab\u8ba4\u4e3a\u5bf9\u98df\u7528\u8be5\u9972\u6599\u7684\u52a8\u7269\u662f\u5b89\u5168\u6709\u6548\u7684\u3002\u7528\u4e8e\u4f9b\u98df\u7528\u7684\u52a8\u7269\u7684\u836f\u7269\u9972\u6599\u4e0d\u4ec5\u5fc5\u987b\u5bf9\u52a8\u7269\u5b89\u5168\uff0c\u800c\u4e14\u5176\u4f7f\u7528\u5fc5\u987b\u8003\u8651\u5230\u968f\u540e\u98df\u7528\u52a8\u7269\u6e90\u4ea7\u54c1\u7684\u4eba\u7c7b\u7684\u5b89\u5168\u3002 \u5916\u56fd\u4f9b\u5e94\u5546\u9a8c\u8bc1\u8ba1\u5212 \u6839\u636eFSVP\u89c4\u5219\uff0c\u98df\u54c1\u8fdb\u5165\u7f8e\u56fd\u65f6\u7684\u7f8e\u56fd\u6240\u6709\u8005\u6216\u6536\u8d27\u4eba\u5fc5\u987b\u5728\u8fdb\u53e3\u524d\u4e3a\u8be5\u4ea7\u54c1\u53ca\u5176\u4f9b\u5e94\u5546\u5236\u5b9a\u5e76\u5b9e\u65bdFSVP\u3002 \u8fdb\u53e3\u5546\u5fc5\u987b\u6307\u5b9a\u4e00\u540d\u5408\u683c\u4eba\u5458\u4ece\u4e8b\u6240\u6709\u4e0eFSVP\u76f8\u5173\u7684\u6d3b\u52a8\u3002\u6839\u636eFSVP\u6807\u51c6\u8981\u6c42\uff0c\u8fd9\u4e9b\u6d3b\u52a8\u5305\u62ec\u8bc6\u522b\u5408\u7406\u53ef\u9884\u89c1\u7684\u5371\u5bb3\u548c\u52a8\u7269\u98df\u54c1\u7684\u9002\u5f53\u63a7\u5236\uff0c\u9a8c\u8bc1\u5916\u56fd\u4f9b\u5e94\u5546\u662f\u5426\u7b26\u5408\u9002\u7528\u7684FDA\u6807\u51c6\u53ca\u5176\u5408\u89c4\u5386\u53f2\uff0c\u786e\u5b9a\u9002\u5f53\u7684\u9a8c\u8bc1\u6d3b\u52a8\uff0c\u5e76\u5728\u5fc5\u8981\u65f6\u91c7\u53d6\u7ea0\u6b63\u63aa\u65bd\u3002 \u5408\u683c\u4eba\u5458\u5fc5\u987b\u63a5\u53d7\u8fc7\u5c65\u884cFSVP\u804c\u8d23\u6240\u9700\u7684\u6559\u80b2\u3001\u57f9\u8bad\u6216\u7ecf\u9a8c\u3002 \u8fdb\u53e3\u5546\u5fc5\u987b\u786e\u4fdd\u53ea\u8fdb\u53e3\u7ecf\u6279\u51c6\u7684\u4f9b\u5e94\u5546\u7684\u4ea7\u54c1\uff0c\u5e76\u786e\u4fdd\u6240\u6709\u9700\u8981FSVP\u7684\u4ea7\u54c1\u6709\u5145\u5206\u7684FSVP\u5e76\u5b9a\u671f\u66f4\u65b0\u3002 \u83b7\u5f97FDA\u5408\u89c4\u65b9\u9762\u7684\u5e2e\u52a9\u3002 Registrar Corp\u7684\u98df\u54c1\u5b89\u5168\u4e13\u5bb6\u53ef\u4ee5\u5236\u5b9a\u3001\u5ba1\u67e5\u6216\u5b9e\u65bd FSVPs\uff0c\u4ee5\u7b26\u5408FDA\u7684\u8981\u6c42\uff0c\u5e2e\u52a9\u60a8\u63d0\u4ea4\u9884\u5148\u7533\u62a5\uff0c\u7b49\u7b49\u3002 \u6b32\u4e86\u89e3\u66f4\u591a\u4fe1\u606f\uff0c\u8bf7\u81f4\u7535+1-757-224-0177\uff0c\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u81f3info@registrarcorp.com\u8054\u7cfb\u6211\u4eec\uff0c\u6216\u901a\u8fc7regstaging.wpengine.com\/livechat\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5373\u65f6\u804a\u5929\u3002 \u83b7\u5f97\u5e2e\u52a9"}