{"version":"1.0","provider_name":"\u6b50\u6613","provider_url":"https:\/\/e2joy.com.tw\/en\/","author_name":"sales","author_url":"https:\/\/e2joy.com.tw\/en\/author\/sales\/","title":"Bioquell HPV \u5e74\u5ea6\u5927\u964d\u50f9!! - \u6b50\u6613","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"orvx45B2XM\"><a href=\"https:\/\/e2joy.com.tw\/en\/bioquell-hpv-%e5%b9%b4%e5%ba%a6%e5%a4%a7%e9%99%8d%e5%83%b9\/\">Bioquell HPV \u5e74\u5ea6\u5927\u964d\u50f9!!<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/e2joy.com.tw\/en\/bioquell-hpv-%e5%b9%b4%e5%ba%a6%e5%a4%a7%e9%99%8d%e5%83%b9\/embed\/#?secret=orvx45B2XM\" width=\"600\" height=\"338\" title=\"&#8220;Bioquell HPV \u5e74\u5ea6\u5927\u964d\u50f9!!&#8221; &#8212; \u6b50\u6613\" data-secret=\"orvx45B2XM\" 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:\/\/e2joy.com.tw\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/e2joy.com.tw\/wp-content\/uploads\/2017\/11\/smallL4ill.png","thumbnail_width":275,"thumbnail_height":388,"description":"Bioquell \u5e74\u5ea6\u5eab\u5b58\u5927\u964d\u50f9\uff0c\u53ea\u8981\u60a8\u7684\u751f\u7522\u7dda\u3001\u7121\u83cc\u5ba4\u3001\u5be6\u9a57\u5ba4\u6709\u9700\u8981\u505a\u6ec5\u83cc\uff0c \u6b64\u6642\u662f\u6700\u597d\u7684\u5165\u624b\u7684\u6642\u523b!! &nbsp; \u8b93\u60a8\u53ef\u4ee5\u7bc0\u770130-50\u591a\u842c\u7684\u9810\u7b97\uff0c\u5c31\u53ef\u4ee5\u9054\u52306-log\u7684\u6ec5\u83cc\u6548\u80fd\uff0c \u4e26\u6709\u5168\u7a0bSensor\u76e3\u63a7\u6eab\u5ea6\u3001\u6fd5\u5ea6\u3001\u58d3\u529b\u7b49\u5831\u8868\u5217\u5370 &nbsp; \u9069\u7528\u6a5f\u578b: L3\/L4 (\u591a\u529f\u80fd\u53ef\u7576\u79fb\u52d5\u5f0f\u6216\u5b9a\u9ede\u63a5\u7ba1) Z2 (\u79fb\u52d5\u578b) Q10 (\u7d93\u5178\u6b3e) BQ 50 (\u8f15\u5de7\u578b) \u61c9\u7528\u7bc4\u570d Applications \u5be6\u9a57\u5ba4 \u5145\u586b\u7dda \u7121\u83cc\u5ba4 \u91ab\u9662\u75c5\u623f\u3001\u624b\u8853\u623f\u3001\u6025\u8a3a\u5ba4 Isolator \u9694\u96e2\u64cd\u4f5c\u53f0 \u4efb\u4f55\u9700\u8981\u9054\u5230 6-log \u7684\u7121\u83cc\u74b0\u5883 &nbsp; \u6b50\u6613\u7368\u5bb6\u4ee3\u7406\u82f1\u570bBioquell\uff0c\u63a1\u7528\u4e7e\u5f0f\u71b1\u6607\u83ef\u904e\u6c27\u5316\u6c2b (HPV) \u7684\u85b0\u84b8\u6280\u8853\uff0c\u5feb\u901f\u9054\u52306-Log\u7684\u6ec5\u83cc\u6548\u679c\u3002 Residue Free \u7121\u6b98\u7559\u7269 High Flexibility \u7121\u6eab\u5ea6\u8207\u6fd5\u5ea6\u9700\u6c42 35%\u00a0High Efficacy \u63a1\u6fc3\u5ea635% \u7d14\u904e\u6c27\u5316\u6c2b Vapourized \u4e7e\u5f0f\u6607\u83ef\uff0c\u975e\u5674\u9727\u5f0f\uff0c\u6240\u4ee5\u5c0d\u96fb\u5b50\u5100\u5668\u7121\u5f71\u97ff Built-in Sensor Monitor \u8a2d\u5099\u5167\u5efaSensor\uff0c\u5168\u7a0b\u6eab\u5ea6\u3001\u6fd5\u5ea6\u3001\u904e\u6c27\u5316\u6c2b\u6fc3\u5ea6\u74b0\u5883\u76e3\u63a7 Reproducible \u78ba\u6821\u5f8c\uff0c\u53ef\u78ba\u4fdd\u6bcf\u4e00\u6b21\u57f7\u884c\u90fd\u6709\u76f8\u540c\u7684\u7d50\u679c Mobile\/Piping \u53ef\u9078\u64c7\u79fb\u52d5\u5f0f\u6216\u63a5\u7ba1\u5f0f\uff0c\u4f9d\u61c9\u7528\u9762\u591a\u91cd\u9078\u64c7 &nbsp; \u8a73\u60c5\u8acb\u6d3d\u6b50\u6613\u53f0\u5317\u7e3d\u516c\u53f8 02-55576888 [&hellip;]"}