add: 保康统计局网站 - 7页面完整版(tj.保康.top)
新增页面结构: - 首页:机构信息、经济数据面板、历年GDP表、最新资讯、通知公告、统计分析、县情、特色产业 - zxzx/:最新资讯(图片新闻+工作动态+时政要闻) - zwgk/:政府信息公开(指南+主动公开+年报+依申请公开) - tjsj/:统计数据(指标面板+6年GDP+统计分析+年鉴+数据查询) - tjgb/:统计公报(历年列表+2024年公报10章节全文) - pczl/:普查专栏(经济/人口/农业普查+1%抽样调查) - hdjl/:互动交流(在线访谈+征集调查+咨询投诉+局长信箱)
This commit is contained in:
@@ -0,0 +1,617 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>保康县统计局 - 政府信息公开</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #1a5276;
|
||||
--primary-light: #2980b9;
|
||||
--accent: #e74c3c;
|
||||
--bg: #f4f6f9;
|
||||
--card: #ffffff;
|
||||
--text: #2c3e50;
|
||||
--text-light: #7f8c8d;
|
||||
--border: #dce1e8;
|
||||
--header-bg: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
|
||||
}
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
font-family: -apple-system, "Microsoft YaHei", "PingFang SC", sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.header {
|
||||
background: var(--header-bg);
|
||||
color: #fff;
|
||||
padding: 20px 0 0;
|
||||
}
|
||||
.header-top {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
.header-top .emblem {
|
||||
font-size: 40px;
|
||||
line-height: 1;
|
||||
}
|
||||
.header-top h1 {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.header-top .subtitle {
|
||||
font-size: 14px;
|
||||
opacity: 0.85;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.header-toolbar {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 10px 20px 0;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 15px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.header-toolbar a {
|
||||
color: rgba(255,255,255,0.8);
|
||||
text-decoration: none;
|
||||
}
|
||||
.header-toolbar a:hover { color: #fff; }
|
||||
|
||||
/* Nav */
|
||||
.nav {
|
||||
background: var(--primary-light);
|
||||
margin-top: 10px;
|
||||
}
|
||||
.nav-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
}
|
||||
.nav a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
padding: 12px 22px;
|
||||
font-size: 15px;
|
||||
transition: background 0.2s;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.nav a:hover, .nav a.active {
|
||||
background: rgba(255,255,255,0.15);
|
||||
}
|
||||
|
||||
/* Breadcrumb */
|
||||
.breadcrumb {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 12px 20px 0;
|
||||
font-size: 13px;
|
||||
color: var(--text-light);
|
||||
}
|
||||
.breadcrumb a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
.breadcrumb a:hover { text-decoration: underline; }
|
||||
.breadcrumb .sep { margin: 0 6px; color: #bbb; }
|
||||
|
||||
/* Container */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 20px auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.card {
|
||||
background: var(--card);
|
||||
border-radius: 8px;
|
||||
padding: 25px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 1px 4px rgba(0,0,0,0.06);
|
||||
}
|
||||
.card h2 {
|
||||
font-size: 18px;
|
||||
color: var(--primary);
|
||||
border-left: 4px solid var(--primary);
|
||||
padding-left: 12px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.card h3 {
|
||||
font-size: 16px;
|
||||
color: var(--primary);
|
||||
margin: 18px 0 10px;
|
||||
}
|
||||
.card h3:first-of-type { margin-top: 0; }
|
||||
|
||||
/* Page Title */
|
||||
.page-title {
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
border-radius: 8px;
|
||||
padding: 18px 25px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
.page-title .icon { font-size: 26px; }
|
||||
|
||||
/* Guide styles */
|
||||
.guide-section {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
.guide-section:last-child { margin-bottom: 0; }
|
||||
.guide-section .guide-label {
|
||||
font-weight: 600;
|
||||
color: var(--primary);
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
font-size: 15px;
|
||||
}
|
||||
.guide-section .guide-label::before {
|
||||
content: "▸ ";
|
||||
}
|
||||
.guide-section p {
|
||||
font-size: 14px;
|
||||
color: var(--text);
|
||||
padding-left: 18px;
|
||||
}
|
||||
.guide-section ul {
|
||||
padding-left: 34px;
|
||||
font-size: 14px;
|
||||
list-style: disc;
|
||||
margin-top: 4px;
|
||||
}
|
||||
.guide-section ul li { margin: 3px 0; }
|
||||
|
||||
/* Table styles */
|
||||
.data-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 14px;
|
||||
}
|
||||
.data-table th {
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
padding: 10px 12px;
|
||||
text-align: left;
|
||||
font-weight: 500;
|
||||
}
|
||||
.data-table td {
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.data-table tr:hover td {
|
||||
background: #f0f7fc;
|
||||
}
|
||||
|
||||
/* Timeline list */
|
||||
.timeline {
|
||||
list-style: none;
|
||||
}
|
||||
.timeline li {
|
||||
padding: 7px 0;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.timeline li a {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
flex: 1;
|
||||
}
|
||||
.timeline li a:hover { color: var(--accent); }
|
||||
.timeline .date {
|
||||
font-size: 13px;
|
||||
color: var(--text-light);
|
||||
white-space: nowrap;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.timeline .badge-new {
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
padding: 1px 7px;
|
||||
border-radius: 10px;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
/* Application section */
|
||||
.apply-box {
|
||||
background: #f0f7fc;
|
||||
border: 1px solid #c5d9e8;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.apply-box p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.apply-box .apply-info {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
gap: 8px 16px;
|
||||
font-size: 14px;
|
||||
margin: 12px 0 0;
|
||||
}
|
||||
.apply-box .apply-info .label { color: var(--text-light); white-space: nowrap; }
|
||||
.apply-box .apply-info .value { font-weight: 500; }
|
||||
.apply-btn {
|
||||
display: inline-block;
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
padding: 10px 28px;
|
||||
border-radius: 6px;
|
||||
text-decoration: none;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
margin-top: 12px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
.apply-btn:hover { background: var(--primary-light); }
|
||||
|
||||
/* Two column */
|
||||
.two-col {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
/* Tag / category tag */
|
||||
.tag {
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
padding: 2px 10px;
|
||||
border-radius: 12px;
|
||||
margin-right: 6px;
|
||||
background: #e8f0fe;
|
||||
color: var(--primary);
|
||||
}
|
||||
.tag-finance { background: #fef3e2; color: #b8860b; }
|
||||
.tag-stats { background: #e6f4ea; color: #1e7e34; }
|
||||
.tag-policy { background: #fce8e6; color: #b31412; }
|
||||
.tag-plan { background: #e8eaf6; color: #3949ab; }
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: var(--primary);
|
||||
color: rgba(255,255,255,0.85);
|
||||
padding: 25px 0;
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
line-height: 2;
|
||||
}
|
||||
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
|
||||
.footer a:hover { color: #fff; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.two-col { grid-template-columns: 1fr; }
|
||||
.nav-inner { overflow-x: auto; }
|
||||
.header-top h1 { font-size: 20px; }
|
||||
.page-title { font-size: 17px; padding: 14px 18px; }
|
||||
.card { padding: 18px; }
|
||||
.apply-box .apply-info { grid-template-columns: 1fr; gap: 4px; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Header -->
|
||||
<div class="header">
|
||||
<div class="header-top">
|
||||
<div class="emblem">📊</div>
|
||||
<div>
|
||||
<h1>保康县统计局</h1>
|
||||
<div class="subtitle">Baokang County Bureau of Statistics</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-toolbar">
|
||||
<a href="../index.html">设为首页</a>
|
||||
<a href="../index.html">加入收藏</a>
|
||||
<a href="#">网站地图</a>
|
||||
</div>
|
||||
<div class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="../index.html">首页</a>
|
||||
<a href="../index.html#机构职能">机构职能</a>
|
||||
<a href="../index.html#统计数据">统计数据</a>
|
||||
<a href="../index.html#统计公报">统计公报</a>
|
||||
<a href="index.html" class="active">信息公开</a>
|
||||
<a href="../index.html#政策法规">政策法规</a>
|
||||
<a href="../index.html#互动交流">互动交流</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="breadcrumb">
|
||||
<a href="../index.html">首页</a><span class="sep">›</span><span>政府信息公开</span>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<!-- Page Title -->
|
||||
<div class="page-title">
|
||||
<span class="icon">📢</span> 政府信息公开
|
||||
</div>
|
||||
|
||||
<!-- ==================== 公开指南 ==================== -->
|
||||
<div class="card">
|
||||
<h2>信息公开指南</h2>
|
||||
<p style="font-size:14px;color:var(--text-light);margin-bottom:16px;">为保障公民、法人和其他组织依法获取政府统计信息,根据《中华人民共和国政府信息公开条例》和《湖北省政府信息公开规定》,编制本指南。</p>
|
||||
|
||||
<div class="guide-section">
|
||||
<span class="guide-label">机构职能</span>
|
||||
<p>保康县统计局是县政府工作部门,主管全县统计和国民经济核算工作。主要职责包括:贯彻执行国家统计法律法规和统计制度;组织实施全县国民经济核算;组织开展人口、经济、农业等重大国情国力普查;组织实施各项常规统计调查和专项监测;发布统计公报和统计信息;对全县经济社会发展情况进行统计分析、预测和监督;管理全县统计信息化系统和统计数据库。</p>
|
||||
<ul>
|
||||
<li><strong>办公地址:</strong>保康县城关镇迎宾路77号</li>
|
||||
<li><strong>办公时间:</strong>上午 8:30-12:00 下午 2:30-6:00(法定工作日)</li>
|
||||
<li><strong>联系电话:</strong>0710-5813408</li>
|
||||
<li><strong>传真号码:</strong>0710-5813408</li>
|
||||
<li><strong>电子邮箱:</strong>bktjj@baokang.gov.cn</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="guide-section">
|
||||
<span class="guide-label">公开范围</span>
|
||||
<p>本机关主动向社会免费公开的政府信息范围主要包括:</p>
|
||||
<ul>
|
||||
<li>机构设置、职责范围、领导信息等机构职能类信息;</li>
|
||||
<li>统计法律法规、规范性文件及政策解读;</li>
|
||||
<li>国民经济和社会发展统计公报、统计年鉴等统计数据;</li>
|
||||
<li>财政预算、决算报告等财政信息;</li>
|
||||
<li>政府信息公开工作年度报告;</li>
|
||||
<li>行政权力运行结果及行政执法公示;</li>
|
||||
<li>其他依照法律法规和国家规定应当主动公开的信息。</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="guide-section">
|
||||
<span class="guide-label">公开形式</span>
|
||||
<p>本机关主要通过以下方式公开政府统计信息:</p>
|
||||
<ul>
|
||||
<li><strong>保康县人民政府门户网站</strong>(<a href="https://www.baokang.gov.cn" target="_blank" style="color:var(--primary);">www.baokang.gov.cn</a>)统计部门专栏;</li>
|
||||
<li>保康县统计局官方网站(tj.保康.top);</li>
|
||||
<li>通过新闻发布会、统计年鉴、统计公报等形式公开;</li>
|
||||
<li>在县统计局办公室设立政府信息公开查阅点;</li>
|
||||
<li>其他便于公众获取信息的方式。</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="guide-section">
|
||||
<span class="guide-label">公开时限</span>
|
||||
<p>属于主动公开范围的政府信息,自该信息形成或者变更之日起 <strong>20个工作日内</strong> 予以公开。法律、法规对政府信息公开的期限另有规定的,从其规定。属于依申请公开的政府信息,本机关在收到申请之日起 <strong>20个工作日内</strong> 予以答复,需要延长答复期限的,延长时间不超过20个工作日。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ==================== 主动公开内容 ==================== -->
|
||||
<div class="card">
|
||||
<h2>主动公开内容</h2>
|
||||
|
||||
<table class="data-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:50%;">信息名称</th>
|
||||
<th style="width:14%;">分类</th>
|
||||
<th style="width:18%;">发文日期</th>
|
||||
<th style="width:18%;">文号</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2026年预算编制说明</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2026-01-20</td>
|
||||
<td style="color:var(--text-light);">保统〔2026〕1号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2024年度部门决算公开</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2025-10-27</td>
|
||||
<td style="color:var(--text-light);">保统〔2025〕12号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县2024年国民经济和社会发展统计公报</a></td>
|
||||
<td><span class="tag tag-stats">统计数据</span></td>
|
||||
<td style="color:var(--text-light);">2025-10-11</td>
|
||||
<td style="color:var(--text-light);">保统发〔2025〕5号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2025年预算编制说明</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2025-01-26</td>
|
||||
<td style="color:var(--text-light);">保统〔2025〕3号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2023年度部门决算公开</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2024-10-18</td>
|
||||
<td style="color:var(--text-light);">保统〔2024〕15号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县2023年国民经济和社会发展统计公报</a></td>
|
||||
<td><span class="tag tag-stats">统计数据</span></td>
|
||||
<td style="color:var(--text-light);">2024-08-18</td>
|
||||
<td style="color:var(--text-light);">保统发〔2024〕4号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2024年度部门预算公开</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2024-01-24</td>
|
||||
<td style="color:var(--text-light);">保统〔2024〕2号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县第五次全国经济普查公报(第一号)</a></td>
|
||||
<td><span class="tag tag-stats">统计数据</span></td>
|
||||
<td style="color:var(--text-light);">2024-06-30</td>
|
||||
<td style="color:var(--text-light);">保经普办〔2024〕1号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局权力清单和责任清单</a></td>
|
||||
<td><span class="tag tag-policy">政策文件</span></td>
|
||||
<td style="color:var(--text-light);">2023-12-20</td>
|
||||
<td style="color:var(--text-light);">保统发〔2023〕8号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县2022年国民经济和社会发展统计公报</a></td>
|
||||
<td><span class="tag tag-stats">统计数据</span></td>
|
||||
<td style="color:var(--text-light);">2023-06-18</td>
|
||||
<td style="color:var(--text-light);">保统发〔2023〕3号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局依法行政工作制度</a></td>
|
||||
<td><span class="tag tag-policy">政策文件</span></td>
|
||||
<td style="color:var(--text-light);">2023-05-10</td>
|
||||
<td style="color:var(--text-light);">保统发〔2023〕2号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计执法"双随机一公开"抽查实施方案</a></td>
|
||||
<td><span class="tag tag-policy">政策文件</span></td>
|
||||
<td style="color:var(--text-light);">2023-03-15</td>
|
||||
<td style="color:var(--text-light);">保统发〔2023〕1号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2023年预算编制说明</a></td>
|
||||
<td><span class="tag tag-finance">财政信息</span></td>
|
||||
<td style="color:var(--text-light);">2023-01-18</td>
|
||||
<td style="color:var(--text-light);">保统〔2023〕2号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县第七次全国人口普查公报</a></td>
|
||||
<td><span class="tag tag-stats">统计数据</span></td>
|
||||
<td style="color:var(--text-light);">2021-08-30</td>
|
||||
<td style="color:var(--text-light);">保人普办〔2021〕2号</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div style="margin-top:12px;text-align:center;font-size:13px;color:var(--text-light);">
|
||||
<a href="https://www.baokang.gov.cn/jcxxgk/bmxxgk/tjj/fdzdgk/" target="_blank" style="color:var(--primary);">查看全部 → 保康县人民政府信息公开平台</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ==================== 信息公开年报 ==================== -->
|
||||
<div class="card">
|
||||
<h2>信息公开年报</h2>
|
||||
<p style="font-size:14px;color:var(--text-light);margin-bottom:12px;">根据《中华人民共和国政府信息公开条例》要求,逐年编制并公布政府信息公开工作年度报告。</p>
|
||||
|
||||
<table class="data-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:60%;">报告名称</th>
|
||||
<th style="width:25%;">发布日期</th>
|
||||
<th style="width:15%;">年度</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2025年政府信息公开工作年度报告</a> <span class="badge-new">最新</span></td>
|
||||
<td style="color:var(--text-light);">2026-01-19</td>
|
||||
<td><strong>2025</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2024年政府信息公开工作年度报告</a></td>
|
||||
<td style="color:var(--text-light);">2025-01-17</td>
|
||||
<td><strong>2024</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2023年政府信息公开工作年度报告</a></td>
|
||||
<td style="color:var(--text-light);">2024-01-25</td>
|
||||
<td><strong>2023</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2022年政府信息公开工作年度报告</a></td>
|
||||
<td style="color:var(--text-light);">2023-01-17</td>
|
||||
<td><strong>2022</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#" style="color:var(--primary);text-decoration:none;">保康县统计局2021年度政府信息公开工作报告</a></td>
|
||||
<td style="color:var(--text-light);">2022-01-25</td>
|
||||
<td><strong>2021</strong></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!-- ==================== 依申请公开 ==================== -->
|
||||
<div class="card">
|
||||
<h2>依申请公开</h2>
|
||||
<p style="font-size:14px;color:var(--text-light);margin-bottom:10px;">除本机关主动公开的政府信息外,公民、法人或者其他组织可以向本机关申请获取相关政府信息。</p>
|
||||
|
||||
<div class="apply-box">
|
||||
<h3 style="border:none;padding:0;margin-bottom:10px;color:var(--primary);">📋 申请须知</h3>
|
||||
<p><strong>受理机构:</strong>保康县统计局办公室</p>
|
||||
<p><strong>受理时间:</strong>法定工作日上午 8:30-12:00,下午 2:30-6:00</p>
|
||||
<p><strong>联系电话:</strong>0710-5813408</p>
|
||||
<p><strong>传真号码:</strong>0710-5813408</p>
|
||||
<p><strong>电子邮箱:</strong>bktjj@baokang.gov.cn</p>
|
||||
<p><strong>通信地址:</strong>保康县城关镇迎宾路77号 保康县统计局办公室(邮编:441600)</p>
|
||||
|
||||
<h3 style="border:none;padding:0;margin:16px 0 10px;color:var(--primary);">📝 申请方式</h3>
|
||||
<p style="margin-bottom:4px;"><strong>1. 书面申请:</strong>申请人可通过信函、传真等方式提交书面申请,请在信封左下角注明"政府信息公开申请"字样。</p>
|
||||
<p style="margin-bottom:4px;"><strong>2. 当面申请:</strong>申请人可到保康县统计局办公室当场提交申请。</p>
|
||||
<p style="margin-bottom:4px;"><strong>3. 网上申请:</strong>通过保康县人民政府门户网站"依申请公开"系统在线提交。</p>
|
||||
|
||||
<h3 style="border:none;padding:0;margin:16px 0 10px;color:var(--primary);">📄 申请处理</h3>
|
||||
<p>本机关收到申请后,将对申请要件是否完备进行审查。申请内容不明确的,将告知申请人作出补正。能够当场答复的当场答复;不能当场答复的,自收到申请之日起 <strong>20个工作日内</strong> 予以答复;如需延长答复期限,延长时间不超过20个工作日。</p>
|
||||
|
||||
<h3 style="border:none;padding:0;margin:16px 0 10px;color:var(--primary);">💰 收费标准</h3>
|
||||
<p>本机关依申请提供政府信息,不收取费用。但申请人申请公开政府信息的数量、频次明显超过合理范围的,本机关将按照《国务院办公厅关于印发〈政府信息公开信息处理费管理办法〉的通知》(国办函〔2020〕109号)有关规定收取信息处理费。</p>
|
||||
|
||||
<div style="margin-top:16px;text-align:center;">
|
||||
<a href="https://www.baokang.gov.cn/xxgk/ysqgk/" target="_blank" class="apply-btn">
|
||||
📩 在线提交依申请公开
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ==================== 相关链接 ==================== -->
|
||||
<div class="card">
|
||||
<h2>相关链接</h2>
|
||||
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:10px;margin-top:10px;">
|
||||
<a href="https://www.baokang.gov.cn/jcxxgk/bmxxgk/tjj/fdzdgk/" target="_blank" style="display:block;background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:14px 12px;text-align:center;text-decoration:none;color:var(--text);font-size:14px;transition:all 0.2s;" onmouseover="this.style.background='var(--primary)';this.style.color='#fff';this.style.borderColor='var(--primary)'" onmouseout="this.style.background='var(--bg)';this.style.color='var(--text)';this.style.borderColor='var(--border)'">
|
||||
<span style="font-size:24px;display:block;margin-bottom:4px;">📂</span> 县政府信息公开
|
||||
</a>
|
||||
<a href="https://www.baokang.gov.cn/xxgk/ysqgk/" target="_blank" style="display:block;background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:14px 12px;text-align:center;text-decoration:none;color:var(--text);font-size:14px;transition:all 0.2s;" onmouseover="this.style.background='var(--primary)';this.style.color='#fff';this.style.borderColor='var(--primary)'" onmouseout="this.style.background='var(--bg)';this.style.color='var(--text)';this.style.borderColor='var(--border)'">
|
||||
<span style="font-size:24px;display:block;margin-bottom:4px;">📨</span> 依申请公开
|
||||
</a>
|
||||
<a href="https://tjj.xiangyang.gov.cn" target="_blank" style="display:block;background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:14px 12px;text-align:center;text-decoration:none;color:var(--text);font-size:14px;transition:all 0.2s;" onmouseover="this.style.background='var(--primary)';this.style.color='#fff';this.style.borderColor='var(--primary)'" onmouseout="this.style.background='var(--bg)';this.style.color='var(--text)';this.style.borderColor='var(--border)'">
|
||||
<span style="font-size:24px;display:block;margin-bottom:4px;">📈</span> 襄阳市统计局
|
||||
</a>
|
||||
<a href="https://www.stats.gov.cn" target="_blank" style="display:block;background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:14px 12px;text-align:center;text-decoration:none;color:var(--text);font-size:14px;transition:all 0.2s;" onmouseover="this.style.background='var(--primary)';this.style.color='#fff';this.style.borderColor='var(--primary)'" onmouseout="this.style.background='var(--bg)';this.style.color='var(--text)';this.style.borderColor='var(--border)'">
|
||||
<span style="font-size:24px;display:block;margin-bottom:4px;">🇨🇳</span> 国家统计局
|
||||
</a>
|
||||
<a href="https://www.gov.cn" target="_blank" style="display:block;background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:14px 12px;text-align:center;text-decoration:none;color:var(--text);font-size:14px;transition:all 0.2s;" onmouseover="this.style.background='var(--primary)';this.style.color='#fff';this.style.borderColor='var(--primary)'" onmouseout="this.style.background='var(--bg)';this.style.color='var(--text)';this.style.borderColor='var(--border)'">
|
||||
<span style="font-size:24px;display:block;margin-bottom:4px;">🏛️</span> 中国政府网
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
<div>主办:保康县统计局 | 联系电话:0710-5813408</div>
|
||||
<div>地址:保康县城关镇迎宾路77号 | 邮编:441600</div>
|
||||
<div>网站标识码:4206260007 | 鄂ICP备19027950号 | 鄂公网安备42062602000051号</div>
|
||||
<div style="margin-top:5px;opacity:0.7;">数据来源:保康县统计局 · 更新于 2026年6月</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user