{"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":"FDA\u516c\u5e03\u4e86\u65b0\u7684\u975e\u5904\u65b9\u836f(OTC)\u4e13\u8bba\u836f\u54c1\u4f01\u4e1a\u5e74\u8d39","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"mAvseuaq8P\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/fda-publishes-new-otc-monograph-drug-facility-user-fees\/\">FDA\u516c\u5e03\u4e86\u65b0\u7684\u975e\u5904\u65b9\u836f(OTC)\u4e13\u8bba\u836f\u54c1\u4f01\u4e1a\u5e74\u8d39<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/fda-publishes-new-otc-monograph-drug-facility-user-fees\/embed\/#?secret=mAvseuaq8P\" width=\"600\" height=\"338\" title=\"&#8220;FDA\u516c\u5e03\u4e86\u65b0\u7684\u975e\u5904\u65b9\u836f(OTC)\u4e13\u8bba\u836f\u54c1\u4f01\u4e1a\u5e74\u8d39&#8221; &#8212; Registrar\" data-secret=\"mAvseuaq8P\" 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\/2019\/07\/drug-inspection-data.jpg","thumbnail_width":1400,"thumbnail_height":427,"description":"2021\u5e743\u670826\u65e5\uff0c\u7f8e\u56fd\u98df\u54c1\u548c\u836f\u7269\u7ba1\u7406\u5c40(FDA)\u516c\u5e03\u4e86\u65b0\u76842021\u8d22\u5e74\u975e\u5904\u65b9\u836f(OTC)\u4e13\u8bba\u4f01\u4e1a\u5e74\u8d39\u3002\u4ece\u4eca\u5e74\u5f00\u59cb\uff0cFDA\u5c06\u8981\u6c42\u6db5\u76d6\u7684OTC\u836f\u54c1\u4f01\u4e1a\u6839\u636eOTC\u4e13\u8bba\u7528\u6237\u8d39\u7528\u8ba1\u5212(OMUFA)\u652f\u4ed8\u5e74\u5ea6\u8bbe\u65bd\u8d39\uff0c\u8be5\u8ba1\u5212\u662f\u6839\u636e2020\u5e743\u6708\u901a\u8fc7\u7684\u300a\u5173\u6000\u6cd5\u6848\u300b\u5efa\u7acb\u7684\u3002FDA\u8868\u793a\uff0c2021\u8d22\u5e74\u7684\u8bbe\u65bd\u8d39\u5e94\u5728\u5f53\u5c40\u5728\u300a\u8054\u90a6\u516c\u62a5\u300b\u516c\u5e032021\u8d22\u5e74\u8d39\u7528\u6807\u51c6\u540e45\u5929\uff082021\u5e745\u670810\u65e5\uff09\u5185\u7f34\u7eb3\u3002 \u8fd9\u53d6\u4ee3\u4e86FDA\u4e8e2020\u5e7412\u6708\u53d1\u5e03\u7684\u516c\u544a\u3002 \u9700\u9700\u8981\u7f34\u7eb3OMUFA\u8bbe\u65bd\u8d39\uff1f FDA\u73b0\u5728\u8981\u6c42\u751f\u4ea7\u6216\u52a0\u5de5OTC\u4e13\u8bba\u836f\u7269\u6210\u54c1\u5242\u578b\u7684\u4f01\u4e1a\u652f\u4ed8\u5e74\u5ea6\u4e13\u8bba\u836f\u54c1\u8bbe\u65bd(MDF)\u8d39\u7528\u30022021\u8d22\u5e74\u7684MDF\u8d39\u7528\u4e3a20,322\u7f8e\u5143\u3002OTC\u5408\u540c\u751f\u4ea7\u673a\u6784(CMOs)\u662f\u6307OTC\u836f\u54c1\u751f\u4ea7\u673a\u6784\uff0c\u5176\u6240\u6709\u8005\u6216\u5176\u9644\u5c5e\u673a\u6784\u5747\u4e0d\u76f4\u63a5\u5411\u7f8e\u56fd\u7684\u96f6\u552e\u5546\u3001\u6279\u53d1\u5546\u6216\u6d88\u8d39\u8005\u9500\u552eOTC\u836f\u54c1\u3002CMO\u9700\u8981\u652f\u4ed8\u5e38\u89c4MDF\u8d39\u7528\u7684\u4e09\u5206\u4e4b\u4e8c\u30022021\u8d22\u5e74\u7684CMO\u8d39\u7528\u4e3a13,548\u7f8e\u5143\u3002 FDA\u5e0c\u671b\u5411\u57282020\u5e741\u67081\u65e5\u81f312\u670831\u65e5\u671f\u95f4\u5728FDA\u6ce8\u518c\u6216\u66f4\u65b0\u5176FDA\u6ce8\u518c\u7684MDFs\u548cCMOs\u6536\u53d6\u8fd9\u4e9b\u8d39\u7528\u3002\u57282021\u5e741\u67081\u65e5\u6216\u4e4b\u540e\u9996\u6b21\u5728FDA\u6ce8\u518c\u7684\u4f01\u4e1a\u4e0d\u9700\u8981\u652f\u4ed82021\u8d22\u5e74OMUFA\u8d39\u7528\uff0c\u4f46\u5728\u5176\u516c\u5e03\uff082022\u8d22\u5e74\u7684\u8d39\u7528\uff09\u540e\uff0c\u8fd9\u4e9b\u4f01\u4e1a\u5c06\u9700\u8981\u652f\u4ed82022\u8d22\u5e74\u7684\u8d39\u7528\u3002 FDA\u672c\u6b21\u901a\u77e5\u7684\u8d39\u7528\u8f83\u5176\u53bb\u5e7412\u6708\u4efd\u516c\u5e03\u7684\u8d39\u7528\u8981\u9ad8\u3002\u5176\u57282020\u5e7412\u6708\u4efd\u516c\u5e03\u7684\u6536\u8d39\u6807\u51c6\u4e3a\uff1aMDFs\u4e3a14,060\u7f8e\u5143\uff0cCMOs 9,373\u7f8e\u5143\u3002\u8d39\u7528\u6807\u51c6\u662f\u6839\u636e\u652f\u6301OTC\u4e13\u8bba\u836f\u54c1\u76f8\u5173\u6d3b\u52a8\u6240\u9700\u7684\u9884\u4f30\u7ecf\u8d39\uff0c\u4ee5\u53ca\u9884\u8ba1\u7f34\u7eb3\u5e74\u8d39\u7684\u4f01\u4e1a\u6570\u91cf\u6765\u5236\u5b9a\u7684\u3002\u6839\u636e3\u6708\u7684\u65b0\u516c\u544a\uff0c\u201cFDA\u5c06\u4e0d\u4f1a\u5bf9\u57282020\u5e741\u670827\u65e5\u65b0\u51a0\u80ba\u708e\u516c\u5171\u536b\u751f\u7d27\u6025\u60c5\u51b5(PHE)\u5ba3\u5e03\u540e\u9996\u6b21\u5728FDA\u6ce8\u518c\uff0c\u5e76\u4e14\u5728PHE\u671f\u95f4\u53ea\u751f\u4ea7OTC\u6d17\u624b\u6db2\u4ea7\u54c1\u7684\u516c\u53f8\u5f81\u6536OMUFA\u8bbe\u65bd\u8d39\u7528\u3002\u201d\u5728\u4e00\u5c01\u81f4\u884c\u4e1a\u7684\u90ae\u4ef6\u4e2d\uff0cFDA\u8868\u793a:\u201c\u7531\u4e8e\u67d0\u4e9b\u6d17\u624b\u6db2\u751f\u5382\u5546\u5c06\u65e0\u9700\u7f34\u7eb3\u8d39\u7528\uff0c\u56e0\u6b64\uff0c\u5176\u4f59\u9700\u8981\u7f34\u7eb3\u5e74\u8d39\u7684\u4f01\u4e1a\u5c06\u4f1a\u9700\u8981\u652f\u4ed8\u66f4\u9ad8\u7684\u5e74\u8d39\uff0c\u56e0\u4e3a\u9700\u8981\u7f34\u7eb3OMUFA\u8d39\u7528\u7684\u4f01\u4e1a\u6570\u91cf\u51cf\u5c11\u4e86\u3002\u201d OMUFA\u8d39\u7528\u4e0d\u9002\u7528\u4e8e\u4ec5\u751f\u4ea7\u6d3b\u6027\u836f\u7269\u6210\u5206(api)\u3001\u751f\u4ea7\u4e34\u5e8a\u7814\u7a76\u7528\u54c1\u3001\u8fdb\u884c\u6d4b\u8bd5\u6216\u5728\u5df2\u5305\u88c5\u7684\u4ea7\u54c1\u4e0a\u653e\u7f6e\u5916\u5305\u88c5\u4ee5\u4f9b\u8bd5\u5242\u76d2\u4f7f\u7528\u7684\u4f01\u4e1a\u3002\u540c\u6837\uff0c\u5982\u679c\u836f\u54c1\u4f01\u4e1a\u7684\u6ce8\u518c\u8868\u660e\u5176\u5df2\u57282019\u5e7412\u670831\u65e5\u4e4b\u524d\u505c\u6b62\u6240\u6709\u4e0eOTC\u4e13\u8bba\u836f\u7269\u6709\u5173\u7684\u6d3b\u52a8\uff0c\u90a3\u4e48\u5176\u4e5f\u65e0\u9700\u7f34\u7eb3\u8d39\u7528\u3002 \u65b0OTC\u4e13\u8bba\u836f\u54c1\u8bbe\u65bd\u5e74\u8d39\u534f\u52a9 \u4e0d\u786e\u5b9a\u54ea\u4e9b\u8d39\u7528\u53ef\u80fd\u9002\u7528\u4e8e\u60a8\u7684\u836f\u54c1\u4f01\u4e1a\uff1f \u4f5c\u4e3a\u6211\u53f8\u7f8e\u56fd\u4ee3\u7406\u4eba\u53ca\u6ce8\u518c\u8054\u7edc\u4eba\u670d\u52a1\u7684\u4e00\u90e8\u5206\uff0c Registrar Corp\u53ef\u4ee5\u5e2e\u52a9\u60a8\u786e\u5b9a\u8d35\u53f8\u5e94\u7f34\u7eb3\u7684\u8d39\u7528\uff0c\u5e76\u7b80\u5316\u5411FDA\u652f\u4ed8\u8d39\u7528\u7684\u6d41\u7a0b\u3002\u53d1\u9001\u7535\u5b50\u90ae\u4ef6\u81f3info@registrarcorp.com\uff0c\u6216\u8005\u81f4\u7535+ 1-757-224-0177\u4e0eRegistrar Corp\u8054\u7cfb\u3002 \u6b64\u5916\uff0c\u60a8\u4e5f\u53ef\u4ee5\u901a\u8fc7regstaging.wpengine.com\/livechat\u4e0e\u6211\u4eec\u5168\u5929\u5019\u5728\u7ebf\u7684\u6cd5\u89c4\u987e\u95ee\u5728\u7ebf\u8054\u7edc\u3002"}