<iframe style="width: 800px; height: 450px;" id="playerFrame" scrolling="no" frameborder="0" allowfullscreen="true" src="//govt-hls.chinadaily.com.cn/player/player.html?src=//govt-hls.chinadaily.com.cn/stream/607509/f225724b-c420-4680-a1cd-8db37014908e/ab246507-c07a-40a0-8595-60f38ff9692d_h.m3u8&p=//govt.chinadaily.com.cn/images/202503/21/67dd0c5a498eec7e132a0a2f.jpeg&l=zh-cn&c=645b3cf8498ea274927ba014&s=WS67dd0c5a498eec7e1f73273f&d=20250321145105&t=China+Life+Tips%3A+240-hour+visa-free+transit+policy"></iframe>
$(function () {
setFrameHeight();
function setFrameHeight() {
if ($("iframe#playerFrame").length > 0) {
$("iframe#playerFrame").css(
"height",
$("iframe#playerFrame")
.css("width")
.substring(0, $("iframe#playerFrame").css("width").length - 2) *
0.5625 +
"px"
);
}
}
$(window).resize(function () {
setFrameHeight();
});
});