{"version":"1.0","provider_name":"Awaken the World","provider_url":"https:\/\/awakentheworld.com\/cn","author_name":"alitardo","author_url":"https:\/\/awakentheworld.com\/cn\/author\/alitardo\/","title":"\u4e09\u6469\u5730\u6838\u5fc3\u51a5\u60f3\u6307\u5bfc\u4ecb\u7ecd - Awaken the World","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"gFweymgZ0j\"><a href=\"https:\/\/awakentheworld.com\/cn\/meditation\/cn-samadhi-core-med-intro\/\">\u4e09\u6469\u5730\u6838\u5fc3\u51a5\u60f3\u6307\u5bfc\u4ecb\u7ecd<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/awakentheworld.com\/cn\/meditation\/cn-samadhi-core-med-intro\/embed\/#?secret=gFweymgZ0j\" width=\"600\" height=\"338\" title=\"&#8220;\u4e09\u6469\u5730\u6838\u5fc3\u51a5\u60f3\u6307\u5bfc\u4ecb\u7ecd&#8221; &#8212; Awaken the World\" data-secret=\"gFweymgZ0j\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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:\/\/awakentheworld.com\/cn\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/awakentheworld.com\/cn\/wp-content\/uploads\/sites\/16\/2022\/08\/Core-Meditations-Introduction.jpg","thumbnail_width":1280,"thumbnail_height":726,"description":"\u4ecb\u7ecd \u8fd9\u4e00\u4e2a\u51a5\u60f3\u6307\u5bfc\u8bfe\u7a0b\u662f\u4e3a\u6240\u6709\u4eba\u5236\u4f5c\u7684\u3002\u5b83\u662f\u4e09\u6469\u5730\u4e2d\u5fc3\u6240\u5e26\u9886\u7684\u51a5\u60f3\u8bfe\u7a0b\u7684\u6838\u5fc3\u7ec3\u4e60\uff0c\u8bd5\u7740\u5e26\u9886\u5927\u5bb6\u8d70\u5411\u4f53\u609f\u4e09\u6469\u5730\u7684\u65c5\u7a0b\u3002\u6211\u8981\u5148\u6307\u51fa\uff0c\u8981\u5728\u51a5\u60f3\u4e2d\u57f9\u517b\u51fa\u4e13\u6ce8\u4e0e\u9547\u5b9a\uff0c\u662f\u4e00\u6761\u6f2b\u957f\u7684\u65c5\u7a0b\u3002\u8981\u6709\u8010\u5fc3\u3001\u6709\u6bc5\u529b\uff0c\u6700\u91cd\u8981\u7684\u662f\u4e0d\u8981\u592a\u6267\u7740\u5728\u4f60\u7684\u8fdb\u5c55\uff0c\u56e0\u4e3a\u6700\u7ec8\u8fd9\u6761\u8def\u672c\u8eab\u5c31\u662f\u76ee\u7684\u3002 \u51a5\u60f3\u6709\u4e24\u4e2a\u9762\u5411\uff0c\u6216\u8005\u8bf4\u4e24\u4e2a\u91cd\u70b9\u3002\u7b2c\u4e00\u4e2a\u9762\u5411\u662f\u53d8\u5316\u7684\u73b0\u8c61\uff0c\u5305\u62ec\u601d\u60f3\u3001\u611f\u89c9\u3001\u60c5\u7eea\u7b49\u3002\u53e6\u4e00\u4e2a\u9762\u5411\u662f\u89c2\u5bdf\u73b0\u8c61\u7684\u610f\u8bc6 \u2013 \u4f60\u53ef\u4ee5\u628a\u8fd9\u4e24\u4e2a\u9762\u5411\u79f0\u4e3a\u300c\u6b63\u5ff5\u300d\u4e0e\u300c\u7a7a\u5ff5\u300d\uff0c\u6216\u9634\u4e0e\u9633\u3002 \u51a5\u60f3\u5f53\u7136\u6709\u4e00\u4e9b\u6280\u5de7\uff0c\u4f46\u51a5\u60f3\u66f4\u91cd\u8981\u7684\u90e8\u4efd\u4e0d\u662f\u4f60\u505a\u4e86\u54ea\u4e9b\u6280\u5de7\uff0c\u800c\u662f\u8981\u8d85\u8d8a\u8fd9\u4e9b\u6280\u5de7\uff0c\u8d85\u8d8a\u4f60\u5b9e\u9645\u505a\u4e86\u4ec0\u4e48\u4e8b\u3002\u51a5\u60f3\u7684\u8fd9\u4e24\u4e2a\u9762\u5411\u5e73\u8861\u7684\u65f6\u5019\uff0c\u5c31\u50cf\u9e1f\u5c55\u5f00\u53cc\u7fc5\uff0c\u5e26\u4f60\u8fc8\u5411\u4e09\u6469\u5730\u3002\u9634\u548c\u9633\uff0c\u6b63\u5ff5\u548c\u7a7a\u5ff5\uff0c\u90fd\u5fc5\u987b\u4fdd\u6301\u5e73\u8861\u3002\u5c31\u50cf\u9f99\u5377\u98ce\u7684\u98ce\u66b4\u87ba\u65cb\u4fdd\u6301\u5e73\u8861\u65f6\uff0c\u5b83\u7684\u4e2d\u5fc3\u662f\u5e73\u9759\u7684\u3002\u8fd9\u79cd\u87ba\u65cb\u4e2d\u5fc3\u7684\u5e73\u9759\u6b63\u662f\u51a5\u60f3\u4e0e\u4e09\u6469\u5730\u7684\u5b8c\u7f8e\u7b26\u53f7\u3002 \u6211\u4eec\u8981\u8c08\u7684\u7b2c\u4e00\u4e2a\u9762\u5411\u662f\u5173\u4e8e\u51a5\u60f3\u7684\u9634\u9762\u3002\u5bf9\u4e8e\u4e0d\u65ad\u53d8\u5316\u7684\u73b0\u8c61\u3001\u751f\u547d\u7684\u80fd\u91cf\u4fdd\u6301\u5f00\u653e\u3001\u4e0d\u6297\u62d2\u3001\u4e0d\u53bb\u8bd5\u56fe\u63a7\u5236\u3002\u5141\u8bb8\u5b83\u7684\u5b58\u5728\uff0c\u4fdd\u6301\u9547\u9759\u3002\u4e0d\u7ba1\u662f\u4ec0\u4e48\u73b0\u8c61\uff0c\u653e\u624b\u8ba9\u5b83\u8d70\u5c31\u597d\u3002\u7b2c\u4e8c\u4e2a\u9762\u5411\u662f\u5173\u4e8e\u51a5\u60f3\u7684\u9633\u9762\uff0c\u96c6\u4e2d\u7cbe\u795e\uff0c\u4fdd\u6301\u6ce8\u610f\u529b\u3002\u5728\u87ba\u65cb\u7684\u4e2d\u592e\u89c2\u5bdf\u4e0d\u65ad\u53d8\u5316\u7684\u73b0\u8c61\u3002 \u4e24\u8005\u9700\u8981\u540c\u65f6\u7ec3\u4e60\u3002\u51a5\u60f3\u6709\u4e00\u4e2a\u9762\u5411\u662f\u8f7b\u677e\u7684\uff0c\u53e6\u4e00\u4e2a\u9762\u5411\u662f\u9700\u8981\u52aa\u529b\u7684\u3002\u4e24\u8005\u90fd\u662f\u540c\u65f6\u7ec3\u4e60\u7684\uff0c\u5c3d\u7ba1\u8fd9\u53ef\u80fd\u770b\u8d77\u6765\u76f8\u4e92\u77db\u76fe\uff0c\u4f46\u4e8b\u5b9e\u5e76\u975e\u5982\u6b64\u3002\u6b63\u5ff5\u4e0e\u7a7a\u5ff5\u3001\u8d39\u529b\u4e0e\u4e0d\u8d39\u529b\u7684\u90e8\u4efd\u90fd\u8981\u540c\u65f6\u4fee\u4e60\uff0c\u76f4\u5230\u5b83\u4eec\u5408\u800c\u4e3a\u4e00\u3002\u6216\u8005\u66f4\u51c6\u786e\u5730\u8bf4\uff0c\u76f4\u5230\u5982\u7985\u5b97\u4e2d\u6240\u8bf4\u7684\u90a3\u6837\uff1a\u975e\u4e00\u975e\u4e8c\u3002 \u4f60\u540c\u65f6\u57f9\u517b\u5168\u795e\u8d2f\u6ce8\u548c\u4e13\u6ce8\u7684\u529b\u91cf\uff0c\u4e0d\u53bb\u6297\u62d2\u6216\u63a7\u5236\uff0c\u653e\u677e\u81ea\u5df1\u4fdd\u6301\u5f53\u4e0b\u3002\u4f60\u4fdd\u6301\u5f53\u4e0b\u7684\u52aa\u529b\u4f1a\u53d8\u5f97\u5982\u6b64\u5de8\u5927\uff0c\u8ba9\u4f60\u5b8c\u5168\u81e3\u670d\u4e8e\u4f60\u7684\u5b58\u5728\uff0c\u800c\u4f60\u5bf9\u5f53\u4e0b\u7684\u6beb\u4e0d\u8d39\u529b\u7684\u81e3\u670d\u662f\u5982\u6b64\u5f7b\u5e95\uff0c\u8ba9\u5b83\u53d8\u6210\u4e86\u6301\u7eed\u7684\u5b58\u5728\u3002 \u51a5\u60f3\u6280\u5de7\u6709\u4e0a\u767e\u79cd\uff0c\u4f46\u65e0\u8bba\u5982\u4f55\uff0c\u6240\u6709\u6280\u5de7\u90fd\u5728\u57f9\u517b\u4e24\u4ef6\u4e8b\uff1a\u96c6\u4e2d\u6ce8\u610f\u529b\uff0c\u6216\u8005\u8bf4\u4fdd\u6301\u73b0\u72b6\u800c\u4e0d\u8d70\u795e\u7684\u80fd\u529b\uff1b\u4ee5\u53ca\u57f9\u517b\u5e73\u9759\u6216\u5185\u5728\u81e3\u670d\u7684\u80fd\u529b\u3002\u900f\u8fc7\u8fd9\u79cd\u65b9\u5f0f\uff0c\u6211\u4eec\u80fd\u51c0\u5316\u81ea\u5df1\u7684\u4e94\u8574\uff0c\u51c0\u5316\u81ea\u5df1\u7684\u4e60\u6c14\u3002 \u6211\u4eec\u5c06\u4ece\u89c2\u606f\u6cd5\u5f00\u59cb\uff0c\u8fd9\u662f\u4f5b\u9640\u6240\u4f20\u6388\u7684\u7ecf\u5178\u6cd5\u95e8\u3002\u5728\u5f00\u59cb\u51a5\u60f3\u4e4b\u524d\u4f38\u5c55\u4e00\u4e0b\uff0c\u6709\u52a9\u4e8e\u8ba9\u8eab\u4f53\u4e3a\u957f\u65f6\u95f4\u7684\u5750\u59ff\u505a\u597d\u51c6\u5907\u3002\u5982\u679c\u4f60\u7684\u5fc3\u667a\u5f88\u5fd9\u788c\uff0c\u53ef\u4ee5\u8bd5\u7740\u6301\u5492\u6765\u96c6\u4e2d\u4f60\u7684\u610f\u8bc6\uff0c\u5e76\u5c06\u4f60\u7684\u610f\u8bc6\u5b9a\u5411\u5230\u5185\u5728\u3002\u603b\u4e4b\u505a\u4efb\u4f55\u81ea\u5df1\u89c9\u5f97\u6709\u6548\u7684\u4e8b\u60c5\uff0c\u8ba9\u81ea\u5df1\u8fdb\u5165\u4e00\u79cd\u8f7b\u677e\u5e73\u9759\u548c\u4e13\u6ce8\u7684\u72b6\u6001\u3002 \u5173\u6389\u4f60\u7684\u624b\u673a\u548c\u4efb\u4f55\u53ef\u80fd\u5206\u6563\u4f60\u6ce8\u610f\u529b\u7684\u4e1c\u897f\u3002\u4e0b\u5b9a\u51b3\u5fc3\uff0c\u5728\u4f60\u89c9\u5f97\u53ef\u4ee5\u7684\u65f6\u95f4\u5185\u4e0d\u95f4\u65ad\u5730\u6301\u7eed\u51a5\u60f3\u3002\u89c2\u5bdf\u547c\u5438\u975e\u5e38\u7b80\u5355\uff0c\u4f46\u505a\u8d77\u6765\u5374\u51fa\u5947\u7684\u56f0\u96be\u3002 \u5c3d\u53ef\u80fd\u8212\u9002\u5730\u5750\u5728\u57ab\u5b50\u3001\u51a5\u60f3\u51f3\u6216\u6905\u5b50\u4e0a\u3002\u4f60\u7684\u810a\u690e\u8981\u4fdd\u6301\u76f4\u7acb\uff0c\u8fd9\u6837\u80fd\u91cf\u624d\u80fd\u81ea\u7531\u5730\u5411\u4e0a\u6d41\u52a8\u3002\u76f4\u7acb\u7684\u810a\u690e\u4f1a\u7ed9\u8eab\u4f53\u5e26\u6765\u8b66\u89c9\u3002\u810a\u67f1\u76f4\u7acb\u540e\uff0c\u653e\u677e\u8eab\u4f53\u7684\u5176\u4f59\u90e8\u5206\u3002\u4f60\u7684\u624b\u53ef\u4ee5\u653e\u5728\u4efb\u4f55\u89c9\u5f97\u8212\u9002\u7684\u5730\u65b9\uff0c\u4f8b\u5982\u819d\u76d6\u4e0a\u3002 \u4fdd\u6301\u521d\u5b66\u8005\u7684\u5fc3\uff0c\u653e\u4e0b\u6240\u6709\u5173\u4e8e\u51a5\u60f3\u7684\u60f3\u6cd5\uff0c\u76f4\u63a5\u89c2\u5bdf\u547c\u5438\uff0c\u4e0d\u52a0\u601d\u7d22\uff0c\u5c31\u597d\u50cf\u4f60\u4ee5\u524d\u4ece\u672a\u6ce8\u610f\u5230\u8fc7\u547c\u5438\u4e00\u6837\u3002\u5982\u679c\u4f60\u5bf9\u51a5\u60f3\u8fd8\u4e0d\u719f\u6089\uff0c\u53ef\u4ee5\u5148\u5c1d\u8bd5\u5750 15 \u5206\u949f\uff0c\u7136\u540e\u6bcf\u5929\u6162\u6162\u7ec3\u4e60\u5ef6\u957f\u5230\u4e00\u4e2a\u5c0f\u65f6\u3002\u5982\u679c\u60a8\u662f\u4e00\u4f4d\u7ecf\u9a8c\u4e30\u5bcc\u7684\u51a5\u60f3\u8005\uff0c\u90a3\u80fd\u5750\u591a\u4e45\u5c31\u5c3d\u91cf\u5750\u591a\u4e45\u3002 \u6211\u4eec\u51c6\u5907\u4e86\u51e0\u4e2a\u51a5\u60f3\u5f15\u5bfc\u8bfe\u7a0b\uff0c\u5305\u62ec\u5f71\u7247\u8ddf\u65c1\u767d\u58f0\u97f3\u6863\u3002\u4e0d\u8981\u628a\u6bcf\u4e00\u90e8\u51a5\u60f3\u5f15\u5bfc\u5f53\u6210\u5355\u72ec\u7684\u8bfe\u7a0b\u6216\u5355\u72ec\u7684\u6280\u5de7\u7ec3\u4e60\u3002\u6bcf\u4e00\u90e8\u8bfe\u7a0b\u90fd\u4f1a\u5f15\u5bfc\u4f60\u52a0\u6df1\u5bf9\u547c\u5438\u7684\u89c9\u77e5\u3002\u4ece\u7b2c\u4e00\u90e8\u5f00\u59cb\u7ec3\u4e60\uff0c\u7b49\u4f60\u7684\u4e13\u6ce8\u548c\u5e73\u9759\u7a0b\u5ea6\u6709\u4e86\u8fdb\u6b65\uff0c\u518d\u8f6c\u5411\u4e0b\u4e00\u4e2a\u51a5\u60f3\u5f15\u5bfc\uff0c\u770b\u770b\u611f\u89c9\u5982\u4f55\u3002\u4f60\u53ef\u4ee5\u5728\u5f00\u59cb\u7ec3\u4e60\u65f6\uff0c\u5148\u4f7f\u7528\u8fd9\u79cd\u51a5\u60f3\u5f15\u5bfc\u8bfe\u7a0b\u5e2e\u60a8\u6162\u6162\u719f\u6089\uff0c\u6700\u7ec8\u60a8\u53ef\u4ee5\u5728\u6ca1\u6709\u6307\u5bfc\u7684\u60c5\u51b5\u4e0b\u5b89\u9759\u5730\u5750\u7740\u3002"}