{"version":"1.0","provider_name":"Immigration EU","provider_url":"https:\/\/immigrationeu.es\/cn\/","author_name":"superinimeximmigrationeu","author_url":"https:\/\/immigrationeu.es\/cn\/author\/superinimeximmigrationeu\/","title":"\u5b89\u9053\u5c14\uff1a\u8d44\u91d1\u5145\u8db3\u4e2a\u4eba\u7684\u5c45\u7559\u8bb8\u53ef - Immigration EU","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"T9Pge77m92\"><a href=\"https:\/\/immigrationeu.es\/cn\/andora-immigration-program-1\/\">\u5b89\u9053\u5c14\uff1a\u8d44\u91d1\u5145\u8db3\u4e2a\u4eba\u7684\u5c45\u7559\u8bb8\u53ef<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/immigrationeu.es\/cn\/andora-immigration-program-1\/embed\/#?secret=T9Pge77m92\" width=\"600\" height=\"338\" title=\"&#8220;\u5b89\u9053\u5c14\uff1a\u8d44\u91d1\u5145\u8db3\u4e2a\u4eba\u7684\u5c45\u7559\u8bb8\u53ef&#8221; &#8212; Immigration EU\" data-secret=\"T9Pge77m92\" 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\n\/* ]]> *\/\n<\/script>\n","description":"[vc_row full_width=&#8221;stretch_row&#8221; content_placement=&#8221;top&#8221; background_position=&#8221;center center&#8221; css=&#8221;.vc_custom_1561307096783{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(https:\/\/immigrationeu.es\/wp-content\/uploads\/2019\/06\/celvin-purnama-65810-unsplash-1.jpg?id=34) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column width=&#8221;1\/6&#8243;][\/vc_column][vc_column width=&#8221;2\/3&#8243; css=&#8221;.vc_custom_1561305594558{background-color: rgba(20,39,78,0.51) !important;*background-color: rgb(104,0,0) !important;}&#8221;][vc_custom_heading text=&#8221;\u5b89\u9053\u5c14\uff1a\u8d44\u91d1\u5145\u8db3\u4e2a\u4eba\u7684\u5c45\u7559\u8bb8\u53ef&#8221; font_container=&#8221;tag:h1|font_size:30px|text_align:center|color:%23ffffff|line_height:32px&#8221; use_theme_fonts=&#8221;yes&#8221; css=&#8221;.vc_custom_1661952271551{margin-bottom: 0px !important;}&#8221;][\/vc_column][vc_column width=&#8221;1\/6&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; css=&#8221;.vc_custom_1562694247586{background-color: #f8f9fa !important;}&#8221;][vc_column width=&#8221;3\/4&#8243; offset=&#8221;vc_hidden-sm vc_hidden-xs&#8221;][vc_tta_tour shape=&#8221;square&#8221; spacing=&#8221;&#8221; active_section=&#8221;1&#8243; el_id=&#8221;box_shadow&#8221;][vc_tta_section title=&#8221;\u4f7f\u547d&#8221; tab_id=&#8221;1561305738645-98d425ea-d949&#8243;][vc_column_text] \u5b89\u9053\u723e\uff1a\u6211\u5011\u7684\u4f7f\u547d \u60a8\u53ef\u4ee5\u4ee5\u7535\u8bdd\uff08+376-325-487\uff09\u6216Skype\uff08Linimex\uff09\u65b9\u5f0f\u968f\u65f6\u4e0e\u6211\u4eec\u53d6\u5f97\u8054\u7cfb\uff0c\u6211\u4eec\u5c06\u4e3a\u60a8\u89e3\u7b54\u60a8\u6240\u6709\u7684\u95ee\u9898\u3002 \u9664\u4e86\u5e38\u89c4\u79fb\u6c11\u670d\u52a1\u5916\uff0c\u6211\u4eec\u4e5f\u53ef\u4ee5\u4e3a\u60a8\u63d0\u4f9b\u79c1\u4eba\u5b9a\u5236\u7684\u670d\u52a1\uff0c\u6211\u4eec\u53ef\u4ee5\u6d3e\u9a7b\u60a8\u4fe1\u4efb\u7684\u5de5\u4f5c\u4eba\u5458\u5230\u60a8\u5de5\u4f5c\u751f\u6d3b\u7684\u57ce\u5e02\u5bf9\u60a8\u7684\u79fb\u6c11\u8fdb\u884c\u76f4\u63a5\u6307\u5bfc\u3002[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;\u689d\u4ef6&#8221; tab_id=&#8221;1622822361410-8b92878c-6051&#8243;][vc_column_text] \u7533\u8bf7\u6761\u4ef6 1.\u00a0\u5728\u5b89\u9053\u5c14\u5f00\u8bbe\u4e2a\u4eba\u94f6\u884c\u8d26\u6237\uff0c\u5e76\u5c06\u4e0b\u8ff0\u8d44\u91d1\u8f6c\u79fb\u81f3\u8be5\u8d26\u6237\uff1a a)\u00a0\u4e2a\u4eba\u7533\u8bf7\uff1a436 000\u6b27\u5143 b)\u00a0\u4e0e\u914d\u5076\u4e00\u8d77\u7533\u8bf7\uff1a448 [&hellip;]","thumbnail_url":"https:\/\/immigrationeu.es\/wp-content\/uploads\/2021\/06\/inimex-es-logo.png","thumbnail_width":763,"thumbnail_height":420}