{"version":"1.0","provider_name":"Hong Kong Baptist Theological Seminary","provider_url":"https:\/\/www.hkbts.edu.hk\/en","author_name":"wordpress_dist","author_url":"https:\/\/www.hkbts.edu.hk\/en\/?p=author\/wordpress_dist\/","title":"\u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u5b78\u58eb \/ \u9ad8\u7d1a\u6587\u6191 \/ \u6587\u6191\uff08\u5b78\u4f4d\u8ab2\u7a0b\uff0920250502 - \u9999\u6e2f\u6d78\u4fe1\u6703\u795e\u5b78\u9662","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"FfG74iHC1Z\"><a href=\"https:\/\/www.hkbts.edu.hk\/en\/dist\/bacs\/\">Bachelor of Arts in Christian Studies \/ Higher Diploma \/ Diploma (Degree Programme) 20250502<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.hkbts.edu.hk\/en\/dist\/bacs\/embed\/#?secret=FfG74iHC1Z\" width=\"600\" height=\"338\" title=\"\u201c&quot;Bachelor of Arts in Christian Studies \/ Higher Diploma \/ Diploma (Degree Program) 20250502&quot; \u2014 Hong Kong Baptist Theological Seminary\" data-secret=\"FfG74iHC1Z\" 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:\/\/www.hkbts.edu.hk\/wp-includes\/js\/wp-embed.js\n<\/script>","description":"\u8ab2\u7a0b\u53ca\u5165\u5b78 \u8fd4\u56de\u4e3b\u9801 \u57fa\u7763\u6559\u7814\u7a76\u6587\u5b78\u5b78\u58eb\u8ab2\u7a0b \u53ca \u57fa\u7763\u6559\u7814\u7a76\u9ad8\u7d1a\u6587\u6191\/\u6587\u6191\uff08\u5b78\u4f4d\u8ab2\u7a0b\uff09 Please refer to the Chinese page. \u8ab2\u7a0b\u7c21\u4ecb \u70ba\u4fe1\u5f92\u63d0\u4f9b\u57fa\u790e\u800c\u53c8\u5be6\u7528\u7684\u795e\u5b78\u8a13\u7df4\uff0c\u88dd\u5099\u4ed6\u5011\u5728\u6559\u6703\u4e2d\u4e8b\u5949\uff0c\u6216\u65bc\u793e\u6703\u4e2d\u898b\u8b49\u4e3b\u3002\u5b8c\u6210\u8ab2\u7a0b\u5f8c\uff0c\u53ef\u929c\u63a5\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u7684\u78a9\u58eb\u8ab2\u7a0b\u6216\u6821\u672c\u90e8\u795e\u5b78\u5b78\u58eb\u8ab2\u7a0b\u3002 \u7db2\u4e0a\u8ab2\u5802\u9ad4\u9a57 \u6559\u6703\u6b77\u53f2 \u5433\u570b\u5091\u6559\u6388 https:\/\/www.youtube.com\/watch?v=mQ6CH9j8Is4 \u820a\u7d04\u4fe1\u606f \u9ec3\u798f\u5149\u6559\u6388 https:\/\/www.youtube.com\/watch?v=a19-_Jt7HkQ&#038;t=7s \u8ab2\u7a0b\u7279\u8272 \u8de8\u57df\u5b78\u7fd2\uff1a\u8b93\u4e16\u754c\u5404\u5730\u7684\u83ef\u4eba\uff0c\u53ef\u4ee5\u96a8\u6642\u96a8\u5730\u3001\u5feb\u6377\u3001\u65b9\u4fbf\u5730\u5b78\u7fd2\u8ab2\u7a0b\u3002 \u591a\u5143\u5b78\u7fd2\uff1a\u8ab2\u7a0b\u6db5\u84cb\u8056\u7d93\u7814\u7a76\u3001\u795e\u5b78\u7406\u8ad6\u548c\u5be6\u8e10\u61c9\u7528\u4e09\u5927\u7bc4\u7587\uff0c\u70ba\u540c\u5b78\u63d0\u4f9b\u6574\u5168\u6559\u80b2\u3002 \u5f48\u6027\u5b78\u7fd2\uff1a\u79d1\u76ee\u7531\u672c\u9662\u6821\u672c\u90e8\u8001\u5e2b\u4efb\u6559\uff0c\u8ab2\u5802\u4ee5\u9304\u64ad\u5f62\u5f0f\u9032\u884c\u3002\u540c\u5b78\u53ef\u5728\u7db2\u4e0a\u91cd\u6eab\u5167\u5bb9\uff0c\u4e26\u6309\u81ea\u5df1\u7684\u9700\u8981\u548c\u5b78\u7fd2\u9032\u5ea6\u9748\u6d3b\u5730\u5b78\u7fd2\u3002 \u9069\u5207\u5b78\u7fd2\uff1a\u8ab2\u7a0b\u8a2d\u8a08\u4ee5\u5b78\u751f\u70ba\u672c\uff0c\u6bcf\u79d1\u5747\u8a2d\u52a9\u6559\u63d0\u4f9b\u5354\u52a9\u3002 \u6301\u7e8c\u5b78\u7fd2\uff1a\u65e5\u5f8c\u5831\u8b80\u672c\u9662\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u78a9\u58eb\u7a0b\u5ea6\u8ab2\u7a0b\u6216\u6821\u672c\u90e8\u795e\u5b78\u5b78\u58eb\u8ab2\u7a0b\uff0c\u53ef\u4ee5\u7533\u8acb\u8c41\u514d\u90e8\u5206\u5b78\u5206\u3002 \u5165\u5b78\u8cc7\u683c \u7533\u8acb\u8005\u9808\u70ba\u91cd\u751f\u5f97\u6551\u3001\u5fc3\u5fd7\u6210\u719f\u3001\u884c\u70ba\u7aef\u6b63\u4e4b\u57fa\u7763\u5f92\uff0c\u4e14\u5df2\u53d7\u6d78\u4e26\u52a0\u5165\u6559\u6703\u3002 \u5177\u5099\u9999\u6e2f\u4e2d\u5b78\u6703\u8003\uff08HKCEE\uff09\u4e94\u79d1\u5408\u683c\u53ca\u5b8c\u6210\u6700\u5c11\u4e00\u5e74\u9810\u79d1\u8ab2\u7a0b\uff0c\u6216\u6301\u6709\u9999\u6e2f\u4e2d\u5b78\u6587\u6191\u8003\u8a66\uff08HKDSE\uff09\u4e94\u79d1\u9054\u7b2c2\u7d1a\uff08\u5305\u542b\u4e2d\u6587\u53ca\u82f1\u6587\uff09\u4e4b\u8b49\u660e\u3002\u82e5\u672a\u80fd\u7b26\u5408\u4e0a\u8ff0\u5b78\u6b77\u8981\u6c42\uff0c\u4e14\u5e74\u9f61\u6eff\u4e8c\u5341\u4e94\u6b72\uff0c\u53ef\u7533\u8acb\u4ee5\u300c\u8a66\u8b80\u751f\u300d\u8cc7\u683c\u5165\u5b78\u3002 \u7372\u6559\u6703\u63a8\u85a6 \u901a\u904e\u672c\u9662\u4e4b\u7b46\u8a66\u53ca\u9762\u8a66 \u5b78\u5236 \u4e00\u5e74\u4e09\u5b78\u671f\uff1a\u79cb\u5b63\uff08\u6bcf\u5e7410\u6708\u81f31\u6708\uff09\u3001\u6625\u5b63\uff08\u6bcf\u5e742\u6708\u81f35\u6708\uff09\u3001\u590f\u5b63\uff08\u6bcf\u5e746\u6708\u81f39\u6708\uff09\u3002 \u6bcf\u79d1\u8a2d\u6709\u9304\u5f71\u8ab2\u5802\u3001\u95b1\u8b80\u53ca\u7fd2\u4f5c\uff0c\u540c\u5b78\u5fc5\u9808\u4f9d\u7167\u6307\u793a\uff0c\u5728\u6709\u6548\u671f\u5167\u5b8c\u6210\u3002 \u79d1\u76ee\u5b78\u5206 \u5802\u6578 \u9304\u5f71\u8ab2\u5802\u6642\u6578 3 14\u5802 \u4e0d\u5c11\u65bc24\u5c0f\u6642 2 9-14\u5802 \u4e0d\u5c11\u65bc16\u5c0f\u6642 \u540c\u5b78\u53ef\u4ee5\u5728\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u4e3b\u4efb\u63a8\u85a6\u3001\u6559\u52d9\u8655\u6279\u51c6\u4e0b\uff0c\u4fee\u8b80\u6821\u672c\u90e8\u6216\u4fe1\u5f92\u795e\u5b78\u6559\u80b2\u8ab2\u7a0b\u7684\u540c\u7d1a\u79d1\u76ee\uff1b\u60df\u4e0a\u9650\u4e0d\u80fd\u8d85\u904e\u6709\u95dc\u5b78\u4f4d20%\u4e4b\u5b78\u5206\uff1b\u5982\u9078\u4fee\u6821\u672c\u90e8\u8ab2\u7a0b\uff0c\u5b78\u8cbb\u4ee5\u6821\u672c\u90e8\u8a08\u7b97\u3002 \u8ab2\u7a0b\u7d50\u69cb \u700f\u89bd\u8ab2\u7a0b\u7d50\u69cb \u8cbb\u7528 \u5831\u540d\u8cbb\uff1aHK$300\uff1b\u672c\u9662\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u7562\u696d\u751f HK$200 \u5b78\u8cbb\uff1a\u6bcf\u5b78\u5206HK$1,152 \u65bc2026-27\u5b78\u5e74\u671f\u9593\u8a3b\u518a\u300c\u9059\u8ddd\u6559\u80b2\u8ab2\u7a0b\u300d\u5b78\u4f4d\u79d1\u76ee\uff0c\u5e74\u9f6130\u6b72\u6216\u4ee5\u4e0b\u53ef\u4eab\u5b78\u8cbb\uff18\u6298\u512a\u60e0\uff0c\u5e74\u9f6160\u6b72\u6216\u4ee5\u4e0a\u5247\u53ef\u4eab\u5b78\u8cbb\uff16\u6298\u512a\u60e0\u3002 \u540c\u4e00\u6559\u6703\u6216\u6a5f\u69cb\u5982\u6709\u4e09\u4eba\u6216\u4ee5\u4e0a\u96c6\u9ad4\u5831"}