CINXE.COM

地方政府网站  广东省人民政府门户网站

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="Keywords" content="广东省人民政府门户网站,政府,GOV,我有话对省长说,广东要闻,政务服务,在线访谈,广东,政策,政策解读,公报,文件,常务会,政府权责清单,文件解读,督查,新闻发布会,走进广东,数据开放,民生,政府工作报告,权责清单,重点领域,公示公告" /> <meta name="description" content="广东省人民政府门户网站由广东省人民政府办公厅主办,南方新闻网、数字广东网络建设有限公司承办。" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="renderer" content="webkit|ie-comp|ie-stand"> <meta name="SiteName" content="广东省人民政府门户网站"> <meta name="SiteDomain" content="www.gd.gov.cn"> <meta name="SiteIDCode" content="4400000131"> <meta name="ColumnName" content="地方政府网站"> <meta name="ColumnDescription" content="发布各地方政府网站链接"> <meta name="ColumnKeywords" content="友情链接"> <meta name="ColumnType" content="友情链接"> <title>地方政府网站&nbsp;&nbsp;广东省人民政府门户网站</title> <link type="text/css" rel="stylesheet" href="css/style_test_0823.css"> <script src="/footAsset/jquery.js"></script> <base target="_blank"> <style> li a{font-size:14px;} .til2{font-weight:bold;} </style> </head> <body> <div style="opacity:0;text-indent:-9999px;width:0;height:0;overflow:hidden"> <a tabindex="1" aria-label="欢迎访问广东省人民政府门户网站,请用 alt 加右键开启智能盲道功能,按 alt 加 4打开导航区,按 tab 键切换读取导航区元素;按 alt 加 5 打开视窗区,按 tab 键切换读取视窗区元素;按 alt 加 6 打开交互区,按 tab 键切换读取交互区元素;按 alt 加 7 打开服务区,按 tab 键切换读取服务区元素;按 alt 加 L 开启或关闭语音阅读声音;按 shift 加上方向键开启或关闭大字幕;按 alt 加问号打开智能盲道帮助页面;按 alt 加 q 键退出智能盲道;按 alt 加 9 退出无障碍服务。" target="_self" role="alert" id="wza-intro"></a> </div> <script> // tab 切换 window.$bindArrow = function (obj) { var $tabs = $(obj.tabs) var $tabsPanel = $(obj.tabsPanel) var $index = obj.initPos || 0 $tabs.bind( { keydown: function(ev){ var LEFT_ARROW = 37; var UP_ARROW = 38; var RIGHT_ARROW = 39; var DOWN_ARROW = 40; var k = ev.which || ev.keyCode; if (k >= LEFT_ARROW && k <= DOWN_ARROW){ if (k == LEFT_ARROW || k == UP_ARROW){ if ($index > 0) { $index--; } else { $index = $tabs.length - 1; } } else if (k == RIGHT_ARROW || k == DOWN_ARROW){ if ($index < ($tabs.length - 1)){ $index++; } else { $index = 0; } } // $($tabs.get($index)).click(); setFocus($index) ev.preventDefault(); } }, // click: function(ev){ // $index = $.inArray(this, $tabs.get()) // setFocus($index) // } }) $tabsPanel.bind({ keydown: function(ev) { var ESC = 27 var k = ev.which || ev.keyCode; if (k === ESC) { $(obj.tabs + '[tabindex=0]').focus() ev.preventDefault(); ev.stopPropagation(); } } }) //初始化 init() function setChildNode($index) { $tabs.find(obj.childNode).attr( { tabindex: '-1', 'aria-selected': 'false' }) $($tabs.get($index)).find(obj.childNode).attr( { tabindex: '0', 'aria-selected': 'true' }) } function init() { var initCount = 0; if (obj.childNode) { setChildNode(initCount) } $tabs.attr( { tabindex: '-1', 'aria-selected': 'false' }).removeClass(obj.active) $($tabs.get($index)).attr( { tabindex: '0', 'aria-selected': 'true' }).addClass(obj.active) } function initTree(p, cb) { for (var i = 0; i < p.children.length; i++) { // 遍历第一级子元素 var child = p.children[i]; if(cb){ cb(child); } // 递归 initTree(child); } } function setFocus($index) { $tabs.attr( { tabindex: '-1', 'aria-selected': 'false' }).removeClass(obj.active) $($tabs.get($index)).attr( { tabindex: '0', 'aria-selected': 'true' }).addClass(obj.active).focus() // 控制区块显隐方式 if(obj.type === 'display'){ $tabsPanel.hide() $($tabsPanel.get($index)).show() }else if(obj.type === 'animate'){ // do something // $tabsPanel.each(function(){ // initTree(this, function(ele){ // $(ele).attr({ // tabindex: '-1', // }); // }) // }); // initTree($($tabsPanel.get($index)), function(ele){ // $(ele).attr({ // tabindex: '0', // }); // }) $tabsPanel.attr( { tabindex: '-1', }); $($tabsPanel.get($index)).attr( { tabindex: '0', }); } if (obj.childNode) { setChildNode($index) } } } // select 切换 window.$bindSelect = function(obj) { var $selectedItem = $(obj.selectedItem) var $menus = $(obj.menus) var $index = 0 $selectedItem.attr( { tabindex: '0', role: 'menu' }) $menus.attr( { role: 'menuitem' }) $selectedItem.bind( { keydown: function(ev, inx) { var SPACE = 32 var ESC = 27 var ENTER = 13 var k = ev.which || ev.keyCode; if (k == SPACE || k == ENTER) { if(ev.preventDefault){ ev.preventDefault(); }else{ window.event.returnValue = false; } setFocus(ev) } if (k == ESC) { setClose(ev) } } }) function setClose(ev) { var target = $(ev.target) var selectedItem = target.closest(obj.selectedItem) var panel = selectedItem.find(obj.menus) panel.hide() selectedItem.focus() } function setFocus(ev) { var panel = $(ev.target).find(obj.menus) $menus.hide() panel.show() } } </script> <script> /** * 判断是否是pc设备 */ function IsPC() { var userAgentInfo = navigator.userAgent; var Agents = ["Android", "iPhone","SymbianOS", "Windows Phone", "iPod"]; var flag = true; for (var v = 0; v < Agents.length; v++) { if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; } } if(window.screen.width>=768){ flag = true; } return flag; } function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null)return unescape(r[2]); return null; } var footUrl = window.location.href; //console.log(footUrl.split("/"); var tempArr = footUrl.split("/"); var endUrl = tempArr[tempArr.length-1]; if(endUrl=="mobile.html"){ tempArr.splice(-1,1); }else if(endUrl.indexOf("index")<0 && endUrl.indexOf("post")<0){ tempArr[tempArr.length-1] = "mindex.html"; }else{ tempArr[tempArr.length-1] = "m"+tempArr[tempArr.length-1]; } var newUrl=""; for(var i=0;i<tempArr.length;i++){ newUrl += tempArr[i] +"/"; } newUrl = newUrl.substr(0,newUrl.length-1); var _jump = GetQueryString("jump")?GetQueryString("jump"):true; // if(!IsPC()&&!(_jump=="false")){ // window.location.href= newUrl; // } </script> <script>(function(u){if((u.indexOf("iP")>-1||u.indexOf("Android")>-1)&&document.location.href!="http://www.gd.gov.cn/yw/sqs/mindex.html"){document.location.href="http://www.gd.gov.cn/yw/sqs/mindex.html"}})(window.navigator.userAgent);</script> <link type="text/css" rel="stylesheet" href="/publicTemplete/header.css"> <script src="/footAsset/jquery.js"></script> <style> .headerTop { height:52px; linne-height:52px; } .headerTop .content { line-height: 52px; } .headerTop .content .slh{ cursor:pointer; background:#dd0900; font-weight:bold; margin-top:11px; float:left; font-size:16px; display: inline-block; width:96px; text-align:center; line-height:30px; height:30px; border-radius:6px; } .headerTop .content .slh i{ background:url("/publicTemplete/slh.png") no-repeat; width: 17px; height: 18px; vertical-align: -4px; display:inline-block; margin-right:6px; } .head .headCon .dh .btn{ width:172px; } .head .headCon .dh .zzllms{ background:#f17d00; color:#fffff; text-align:center; font-weight:bold; font-size:22px; cursor:pointer; line-height:36px; height:36px; border-radius:6px; margin-top:12px; padding:0 10px; } </style> <div class="headerTop"> <div class="content clearfix"> <div class="right" aria-label="您已进入工具栏服务区" altdes="服务区"> <a id="slh" class="slh" title="长者助手"><i></i>长者助手</a> <a target="_blank" href="//service.gd.gov.cn/todos"><img src="/ggtp/login.png" alt="个人中心" title="个人中心">个人中心</a> <a target="_blank" href="//www.gd.gov.cn/dhc/znwd/"><img src="/ggtp/robot.png" alt="智能机器人" title="智能机器人">智能机器人</a> <a id="wza" style="cursor:pointer;" tabindex="0" aria-label="按 alt 加 4 打开导航区,按 tab 键切换读取导航区元素;按 alt 加 5 打开视窗区,按 tab 键切换读取视窗区元素;按 alt 加 6 打开交互区,按 tab 键切换读取交互区元素;按 alt 加 7 打开服务区,按 tab 键切换读取服务区元素;按 alt 加 L 开启或关闭语音阅读声音;按 shift 加上方向键开启或关闭大字幕;按 alt 加问号打开智能盲道帮助页面;按 alt 加 q 键退出智能盲道;按 alt 加 9 退出无障碍服务。"><img src="/ggtp/wza.png" alt="无障碍" title="无障碍">无障碍</a> <div class="phone"> <img src="/ggtp/phone.png" alt="手机版" title="手机版">手机版 <div class="sjbewm"><img src="/publicTemplete/sjbewm.jpg" alt="手机版二维码" title="手机版二维码"></div> </div> <div class="fjchange"><script type="text/javascript" src="/publicTemplete/languagechange.js"></script></div> <div class="ipv"><img src="/defres/ipv.png" alt="网站支持ipv6" title="网站支持ipv6"> </div> </div> </div> </div> <script> $(function () { $(".headerTop .content .phone").on("mouseover", function () { $(".headerTop .content .phone .sjbewm").show(); }); $(".headerTop .content .phone").on("mouseleave", function () { $(".headerTop .content .phone .sjbewm").hide(); }); }); </script> <div class="head"> <div class="headCon"> <div class="search" wzades="输入关键词可对网站内容进行搜索"> <form class="form-wrapper cf" action="https://search.gd.gov.cn/search/all/2" onsubmit="checkKey()" aria-label="您已进入全站搜索交互区,本区域包含1个文本输入框和1个提交按钮" altdes="交互区" role="form"> <input type="text" name="keywords" autocomplete="off" aria-label="文本输入框:请输入关键词" altdes> <input type="hidden" name="c" value="index"> <input type="hidden" name="a" value="all"> <button type="submit" aria-label="提交按钮:按回车键选中选项" role="button"></button> </form> </div> <script> $(".search input[name=keywords]").val("请输入要搜索的内容"); $(".search input[name=keywords]").on("focus",function(){ if($(".search input[ name=keywords]").val()=="请输入要搜索的内容"){ $(".search input[name=keywords]").val(""); } }); $(".search input[name=keywords]").on("blur",function(){ if($.trim($(".search input[ name=keywords]").val()).length<=0){ $(".search input[name=keywords]").val("请输入要搜索的内容"); } }); function checkKey(){ if($(".search input[ name=keywords]").val()=="请输入要搜索的内容"){ $(".search input[name=keywords]").val(""); } } </script> <div class="dh" wzades="提供网站首页及要闻动态、政务公开、政务服务、互动交流、走进广东等栏目入口"> <div style="float:left;" aria-label="您已进入首页及一级栏目导航区" altdes="导航区" tabindex="0"> <div class="sy btn"> <a href="http://www.gd.gov.cn"><img src="/images/dh.png" alt="首页" title="首页"></a> </div> <div class="btn yaowendongtai"> <a href="http://www.gd.gov.cn/gdywdt/index.html">要闻动态</a> </div> <div class="btn zhengwugongkai"> <a href="http://www.gd.gov.cn/zwgk/index.html" >政务公开</a> </div> <div class="btn"> <a href="http://zwfw.gd.gov.cn/" >政务服务</a> </div> <div class="btn hudongjiaoliu"> <a href="http://www.gd.gov.cn/hdjl/index.html" >互动交流</a> </div> <div class="btn zoujinguangdong"> <a href="http://www.gd.gov.cn/zjgd/index.html" >走进广东</a> </div> </div> <div class="zzllms right" aria-label="您已进入长者浏览模式工具服务区" altdes="服务区" target="_self" tabindex="0">长者浏览模式</div> </div> </div> </div> <script>window.NFCMS_SITE_ID=2;window.NFCMS_PUB_TYPE="page";window.NFCMS_PAGE_ID="1458";</script><script src="//statistics.gd.gov.cn/scripts/s.js?t=1739781770" async></script> <script src="//service.gd.gov.cn/wza/wza.js?app=www-gd"></script> <script> // IE8 兼容配置 window.onload = function() { cnillWzaInstance.startInit("/footAsset/cnill_polyfill.swf"); // 当tab键聚焦至无障碍按钮时,按回车键可直接打开智能盲道模式 cnillWzaInstance.setOption({ domId: 'wza' }); } document.getElementById("wza").onclick = function() { // 执行实例的init方法 cnillWzaInstance.init(); // cnillWzaInstance为全局变量 } </script> <script src="https://slhsrv.southcn.com/wza/slh.js?app=www-gd"></script> <script> // 适老化 document.getElementById("slh").onclick = function() { // 执行实例的init方法 slhInstance.init(); // cnillWzaInstance为全局变量 } $(function () { const regex = /(http:\/\/www.gd.gov.cn)(.*)/gm; const regex1 = /(https:\/\/www.gd.gov.cn)(.*)/gm; const str = location.href; let m, group1, group2; $(".zzllms").on("click", function () { if(str.indexOf("http://www.gd.gov.cn")>=0){ while ((m = regex.exec(str)) !== null) { if (m.index === regex.lastIndex) { regex.lastIndex++; } m.forEach(function(match, groupIndex){ if (groupIndex == 1) { group1 = match; } else if (groupIndex == 2) { group2 = match; } }); } location.href = group1 + '/zzllms' + group2; }else if(str.indexOf("https://www.gd.gov.cn")>=0){ while ((m = regex1.exec(str)) !== null) { if (m.index === regex1.lastIndex) { regex1.lastIndex++; } m.forEach(function(match, groupIndex){ if (groupIndex == 1) { group1 = match; } else if (groupIndex == 2) { group2 = match; } }); } location.href = group1 + '/zzllms' + group2; } }); }); </script> <div class="con LinkList"> <div aria-label="您已进入地方政府网站链接导航区" altdes="导航区"> <h1 class="til2" wzades="地方政府网站">地方政府网站</h1> <div class="g-pad"> <div class="g-pad-body"> <ul class="g-list-t-jg clearfix"> <li wzades="北京"> <a href="http://www.beijing.gov.cn/">北京</a> </li> <li wzades="天津"> <a href="http://www.tj.gov.cn/">天津</a> </li> <li wzades="河北"> <a href="http://www.hebei.gov.cn/">河北</a> </li> <li wzades="山西"> <a href="http://www.shanxi.gov.cn">山西</a> </li> <li wzades="内蒙古"> <a href="http://www.nmg.gov.cn/">内蒙古</a> </li> <li wzades="辽宁"> <a href="http://www.ln.gov.cn">辽宁</a> </li> <li wzades="吉林"> <a href="http://www.jl.gov.cn">吉林</a> </li> <li wzades="黑龙江"> <a href="http://www.hlj.gov.cn">黑龙江</a> </li> <li wzades="上海"> <a href="http://www.shanghai.gov.cn/">上海</a> </li> <li wzades="江苏"> <a href="http://www.jiangsu.gov.cn/">江苏</a> </li> <li wzades="浙江"> <a href="http://www.zj.gov.cn/">浙江</a> </li> <li wzades="安徽"> <a href="http://www.ah.gov.cn/">安徽</a> </li> <li wzades="福建"> <a href="http://www.fujian.gov.cn/">福建</a> </li> <li wzades="江西"> <a href="http://www.jiangxi.gov.cn">江西</a> </li> <li wzades="山东"> <a href="http://www.shandong.gov.cn/">山东</a> </li> <li wzades="河南"> <a href="http://www.henan.gov.cn/">河南</a> </li> <li wzades="湖北"> <a href="http://www.hubei.gov.cn/">湖北</a> </li> <li wzades="湖南"> <a href="http://www.hunan.gov.cn/">湖南</a> </li> <li wzades="广东"> <a href="http://www.gd.gov.cn/">广东</a> </li> <li wzades="广西"> <a href="http://www.gxzf.gov.cn/">广西</a> </li> <li wzades="海南"> <a href="http://www.hainan.gov.cn/">海南</a> </li> <li wzades="重庆"> <a href="http://www.cq.gov.cn/">重庆</a> </li> <li wzades="四川"> <a href="http://www.sc.gov.cn">四川</a> </li> <li wzades="贵州"> <a href="http://www.guizhou.gov.cn">贵州</a> </li> <li wzades="云南"> <a href="http://www.yn.gov.cn/">云南</a> </li> <li wzades="西藏"> <a href="http://www.xizang.gov.cn/">西藏</a> </li> <li wzades="陕西"> <a href="http://www.shaanxi.gov.cn/">陕西</a> </li> <li wzades="甘肃"> <a href="http://www.gansu.gov.cn/">甘肃</a> </li> <li wzades="青海"> <a href="http://www.qinghai.gov.cn/">青海</a> </li> <li wzades="宁夏"> <a href="http://www.nx.gov.cn/">宁夏</a> </li> <li wzades="新疆"> <a href="http://www.xinjiang.gov.cn/">新疆</a> </li> <li wzades="香港"> <a href="http://www.gov.hk/">香港</a> </li> <li wzades="澳门"> <a href="https://www.gov.mo">澳门</a> </li> <li wzades="台湾">台湾</li> <li wzades="新疆生产建设兵团"> <a href="http://www.xjbt.gov.cn/?COLLCC=3249464628&amp;">新疆生产建设兵团</a> </li> </ul> </div> </div> </div> </div> <link type="text/css" rel="stylesheet" href="/publicTemplete/foot.css"> <link type="text/css" rel="stylesheet" href="/footAsset/cusSelect.css"> <div class="foot"> <div class="Links" wzades="提供各级政府机构网站链接" aria-label="您已进入友情链接导航区" altdes="导航区"> <div class="linkCon clearfix"> <div class="left clearfix"> <div class="button left" tabindex="0" aria-label="您已进入中国政府网链接导航区"><a href="http://www.gov.cn/">中国政府网</a></div> <span class="shus"></span> </div> <div tabindex="0" class="left" aria-label="您已进入政府网站友情链接导航区,本区域包含国务院部门网站、地方政府网站、驻港澳机构网站、省直单位网站、地级以上市网站链接。"> <div class="cusSelects" aria-label="国务院部门网站"> <a href="http://www.gd.gov.cn/yw/gwybm/index.html">国务院部门网站</a> </div> <span class="shus"></span> <div class="cusSelects" aria-label="地方政府网站"> <a href="http://www.gd.gov.cn/yw/sqs/index.html">地方政府网站</a> </div> <span class="shus"></span> <div class="cusSelects" aria-label="驻港澳机构网站"> <a href="http://www.gd.gov.cn/yw/zgajg/index.html">驻港澳机构网站</a> </div> <span class="shus"></span> <div class="cusSelects" aria-label="省直单位网站"> <a href="http://www.gd.gov.cn/yw/szfjg/index.html">省直单位网站</a> </div> <span class="shus"></span> <div class="cusSelects" aria-label="地级以上市网站"> <a href="http://www.gd.gov.cn/yw/ds/index.html">地级以上市网站</a> </div> </div> </div> </div> <div wzades="网站信息"> <div class="info"> <div class="info-itm zficon"> <div class="jiucuo" aria-label="您已进入我为政府网站找错平台视窗区" tabindex="0" altdes="视窗区"> <script id="_jiucuo_" sitecode='4400000131' src='https://zfwzgl.www.gov.cn/exposure/jiucuo.js'></script> </div> <div class="ideConac" aria-label="您已进入党政机关网站标识视窗区" tabindex="0" altdes="视窗区"> <script type="text/javascript"> document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='https://dcs.conac.cn/js/20/000/0000/60151380/CA200000000601513800001.js' type='text/javascript'%3E%3C/script%3E")); </script> </div> <div class="footWza" aria-label="您已进入适老化无障碍服务标识视窗区" tabindex="0" altdes="视窗区"><img src="/footAsset/foot_wza.png" title="适老化无障碍服务" alt="适老化无障碍服务"></div> </div> <div class="info-itm wzinfo" aria-label="您已进入网站信息视窗区" altdes="视窗区"> <div class="wzinfo-itm active">网站信息</div> <div class="wzinfo-itm"> <a target="_blank" href="http://www.gd.gov.cn/yw/content/post_100915.html">关于本网</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_blank" href="http://www.gd.gov.cn/yw/content/post_2169593.html">网站声明</a> </div> <div class="wzinfo-itm"> <a target="_blank" href="http://www.gd.gov.cn/yw/content/post_104984.html">网站地图</a> </div> </div> <div class="info-itm wzinfo" aria-label="您已进入网站联系方式视窗区" altdes="视窗区"> <div class="wzinfo-itm active" >联系我们</div> <div class="wzinfo-itm"> <p style="padding-top: 0px;line-height: 32px;" tabindex="0">020-83135078</p> <p style="font-size: 12px; color: #777;padding-top: 0px;line-height: 32px;" tabindex="0">仅受理网站建设维护相关事宜</p> </div> <div class="wzinfo-itm" tabindex="0">service@gd.gov.cn</div> </div> <div class="info-itm wzinfo xmtjz" aria-label="您已进入新媒体矩阵视窗区" altdes="视窗区"> <div class="wzinfo-itm active" style="cursor:auto;">新媒体矩阵</div> <div class="wzinfo-itm clearfix"> <div class="code code1 left" tabindex="0"> <img src="/publicTemplete/icon_qr.jpg" title="网站官方微信" alt="网站官方微信"> 网站官方微信 </div> <div class="code right"><a style="display:block;" href="https://weibo.com/gdszfw"><img src="/publicTemplete/weibo.png" title="网站官方微博" alt="网站官方微博">网站官方微博</a> </div> </div> <div class="wzinfo-itm clearfix"> <div class="code code2 left" style="display:inline-block;width: 47%;" tabindex="0"> <img src="/publicTemplete/icon_qr.jpg" title="粤省事小程序" alt="粤省事小程序"> 粤省事小程序 </div> <div class="code code3 right" tabindex="0"> <img src="/publicTemplete/icon_qr.jpg" title="粤商通APP" alt="粤商通APP"> 粤商通APP </div> </div> </div> <div class="QrCode qr_1 hide"> <img src="/publicTemplete/qrCode_1.png" title="网站官方微信" alt="网站官方微信"> </div> <div class="QrCode qr_2 hide"> <img src="/publicTemplete/qrCode_2.png" title="粤省事小程序" alt="粤省事小程序"> </div> <div class="QrCode qr_3 hide"> <img src="/publicTemplete/yst.jpg" title="粤商通APP" alt="粤商通APP"> </div> </div> <div class="copyright" aria-label="您已进入网站标识视窗区" altdes="视窗区"> <div class="con"> <span tabindex="0">主办:&nbsp;&nbsp;&nbsp;广东省人民政府办公厅&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <span tabindex="0">承办:&nbsp;&nbsp;&nbsp;南方新闻网&nbsp;&nbsp;&nbsp;数字广东网络建设有限公司</span> <div class="right"> <p tabindex="0">版权所有:广东省人民政府门户网站</p> <p> <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001160"><img src="/publicTemplete/icon_ga.png" style="width:20px; height:20px; display:inline-block;vertical-align: -6px;" alt="粤公网安备 44010402001160号" title="粤公网安备 44010402001160号"/></a> <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001160">粤公网安备 44010402001160号</a> </p> <p><a href="https://beian.miit.gov.cn">粤ICP备05070829号</a>&nbsp;&nbsp;&nbsp;<span tabindex="0">网站标识码4400000131</span></p> </div> </div> </div> </div> <div class="filter"></div> <div class="aTips" style="display:none;"> <div class="text">您访问的链接即将离开“广东省人民政府门户网站”,是否继续?</div> <div class="layui-layer-btn"> <div class="layui-layer-btn1">放弃</div> <div date-url="" class="layui-layer-btn0"><img alt="继续访问" title="继续访问" style="width:20px;height:20px;float:left;margin: 3px 5px 0 -8px;" src="/ggtp/loading.gif">继续访问 </div> </div> </div> </div> <script src="/footAsset/cusSelect.js"></script> <script src="/publicTemplete/footJs.js"></script> <script> $("#_span_jiucuo img").attr("title","政府网站找错").attr("alt","政府网站找错"); $("#imgConac").attr("title","党政机关").attr("alt","党政机关"); </script> <script> // 下拉改造 window.$bindSelect({ menus: ".cusOpSet", selectedItem: ".cusSelect" }) </script> <script src="js/main.js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10