Files
郭庆泰 cf5790229a refactor: 合并 biz_support_unit/biz_execution_unit/biz_service_org 为 biz_org, 删除 2 张孤儿表, 改 biz_person.work_unit → org_id FK
主要改动:
- SQL: biz_support_unit → biz_org, 加 org_type, 加 business_nature; 删 biz_execution_unit, biz_service_org
- SQL: biz_project.support_unit_id/name + service_org_id/name → org_id/name/type
- SQL: biz_meeting.support_unit_name → org_name
- SQL: biz_person.work_unit → org_id (FK)
- 后端: 新 BizOrg entity/mapper/service/controller
- 后端: BizProject/BizMeeting 字段重命名
- 后端: 删 12 个 BizSupportUnit/BizExecutionUnit/BizServiceOrg Java 文件
- 后端: BizPersonImportVO.workUnit → orgName (导入时查 biz_org 取 org_id)
- 后端: BizAuthController.registerExecutor 完整实现 (原 registerSupplier stub)
- 前端: 新 admin/Orgs.vue + manager/Orgs.vue (原 SupportUnits)
- 前端: RegisterExecutor.vue (原 RegisterSupplier, 单页 2 步)
- 前端: sponsor/executor/manager 多个文件 workUnit → orgId/orgName 重命名
- 前端: 统一 supplier → executor, 业务命名 sponsor(赞助方) / executor(执行方=供应商)
- 前端: 全工程 execution → executor (company type / role / person unit_type)
2026-08-15 12:41:10 +08:00

1293 lines
46 KiB
HTML

<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #1f2937;
background: #ffffff;
min-width: 1354px;
line-height: 1.6;
overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
/* ========== 顶部导航 ========== */
.top-nav {
position: sticky;
top: 0;
z-index: 1000;
height: 72px;
padding: 0 60px;
background: #1e3a8a;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s;
}
.top-nav.is-scrolled {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo-icon {
width: 36px;
height: 36px;
background: #fff;
color: #1e3a8a;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 600;
}
.logo-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}
.logo-title {
font-size: 16px;
font-weight: 600;
color: #fff;
letter-spacing: 0.5px;
}
.logo-subtitle {
font-size: 11px;
color: rgba(255, 255, 255, 0.6);
margin-top: 2px;
letter-spacing: 0.3px;
}
.nav-list {
display: flex;
align-items: center;
gap: 36px;
list-style: none;
}
.nav-item {
position: relative;
height: 72px;
display: flex;
align-items: center;
}
.nav-link {
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
cursor: pointer;
transition: color 0.25s;
position: relative;
height: 72px;
display: flex;
align-items: center;
}
.nav-link::after {
content: '';
position: absolute;
left: 50%;
bottom: 0;
width: 0;
height: 2px;
background: #fff;
transform: translateX(-50%);
transition: width 0.3s ease;
}
.nav-item:hover .nav-link,
.nav-link.active {
color: #fff;
}
.nav-item:hover .nav-link::after,
.nav-link.active::after {
width: 100%;
}
/* 一级下拉 */
.nav-dropdown {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(8px);
background: #fff;
border-top: 2px solid #1e3a8a;
min-width: 140px;
display: none;
z-index: 100;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
opacity: 0;
transition: opacity 0.25s, transform 0.25s;
}
.nav-item:hover .nav-dropdown {
display: block;
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.dropdown-item {
position: relative;
}
.dropdown-link {
display: block;
padding: 10px 22px;
font-size: 14px;
color: #1f2937;
white-space: nowrap;
cursor: pointer;
transition: background 0.2s, color 0.2s, padding-left 0.2s;
border-left: 2px solid transparent;
}
.dropdown-link:hover {
background: #f3f4f6;
color: #1e3a8a;
padding-left: 26px;
border-left-color: #1e3a8a;
}
/* 二级下拉 */
.sub-dropdown {
position: absolute;
left: 100%;
top: 0;
background: #fff;
border-left: 2px solid #1e3a8a;
min-width: 120px;
display: none;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.dropdown-item:hover .sub-dropdown {
display: block;
}
/* 顶部工具栏 */
.top-tools {
display: flex;
align-items: center;
gap: 16px;
}
.search-box {
position: relative;
width: 200px;
}
.search-input {
width: 100%;
height: 34px;
padding: 0 36px 0 14px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.1);
color: #fff;
font-size: 13px;
outline: none;
transition: all 0.2s;
}
.search-input::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.search-input:focus {
border-color: rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.15);
}
.search-btn {
position: absolute;
right: 0;
top: 0;
width: 34px;
height: 34px;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.2s;
}
.search-btn:hover { color: #fff; }
.user-link {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
color: rgba(255, 255, 255, 0.85);
font-size: 13px;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.user-link:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
/* ========== 主体容器 ========== */
.container {
max-width: 1354px;
margin: 0 auto;
padding: 0 60px;
}
/* ========== 区块标题 ========== */
.section-title {
font-size: 20px;
font-weight: 600;
color: #1f2937;
margin-bottom: 22px;
position: relative;
padding-left: 12px;
letter-spacing: 0.5px;
}
.section-title::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 18px;
background: #1e3a8a;
}
.section-title-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.more-link {
color: #1e3a8a;
font-size: 13px;
cursor: pointer;
}
.more-link:hover { text-decoration: underline; }
/* ========== 主视觉横幅 ========== */
.hero-banner {
margin-top: 30px;
background: #1e3a8a;
color: #fff;
height: 280px;
padding: 0 60px;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 60%;
}
.hero-tag {
display: inline-block;
padding: 4px 12px;
border: 1px solid rgba(255, 255, 255, 0.4);
font-size: 12px;
letter-spacing: 2px;
margin-bottom: 18px;
}
.hero-title {
font-size: 34px;
font-weight: 600;
margin-bottom: 14px;
letter-spacing: 1.5px;
}
.hero-subtitle {
font-size: 14px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 22px;
letter-spacing: 0.5px;
}
.hero-btn {
display: inline-block;
padding: 10px 28px;
background: #fff;
color: #1e3a8a;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
letter-spacing: 1px;
}
.hero-btn:hover {
background: #f3f4f6;
}
.hero-meta {
position: absolute;
right: 60px;
top: 50%;
transform: translateY(-50%);
z-index: 1;
display: flex;
gap: 32px;
}
.hero-meta-item {
text-align: center;
}
.hero-meta-item .num {
font-size: 32px;
font-weight: 300;
font-family: ui-monospace, "Courier New", monospace;
letter-spacing: 1px;
display: block;
margin-bottom: 4px;
}
.hero-meta-item .label {
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
}
/* ========== 项目方案招募 ========== */
.recruit-section {
padding: 50px 0 30px;
}
.plan-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.plan-card {
background: #fff;
border: 1px solid #e5e7eb;
cursor: pointer;
transition: border-color 0.2s;
}
.plan-card:hover {
border-color: #1e3a8a;
}
.plan-card-image {
height: 160px;
background: #f3f4f6;
display: flex;
align-items: center;
justify-content: center;
position: relative;
border-bottom: 1px solid #e5e7eb;
}
.plan-card-image .num {
font-size: 56px;
font-weight: 200;
color: #1e3a8a;
font-family: ui-monospace, "Courier New", monospace;
letter-spacing: 2px;
}
.plan-card-tag {
position: absolute;
top: 12px;
left: 12px;
padding: 3px 10px;
background: #1e3a8a;
color: #fff;
font-size: 12px;
z-index: 1;
}
.plan-card-body {
padding: 18px 20px;
}
.plan-card-title {
font-size: 16px;
font-weight: 600;
color: #1f2937;
margin-bottom: 8px;
letter-spacing: 0.5px;
}
.plan-card-desc {
font-size: 13px;
color: #6b7280;
line-height: 1.7;
margin-bottom: 12px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.plan-card-quarter {
font-size: 12px;
color: #1e3a8a;
font-weight: 500;
padding-top: 12px;
border-top: 1px solid #f3f4f6;
}
/* ========== 项目招募动态 ========== */
.news-section {
padding: 30px 0 40px;
}
.news-layout {
display: grid;
grid-template-columns: 420px 1fr;
gap: 20px;
}
.news-feature {
background: #fff;
border: 1px solid #e5e7eb;
cursor: pointer;
transition: border-color 0.2s;
}
.news-feature:hover {
border-color: #1e3a8a;
}
.news-feature-image {
height: 200px;
background: #f3f4f6;
display: flex;
align-items: center;
justify-content: center;
}
.news-feature-image .placeholder {
font-size: 48px;
color: #1e3a8a;
font-weight: 200;
letter-spacing: 4px;
}
.news-feature-body {
padding: 20px 22px;
}
.news-feature-tag {
display: inline-block;
padding: 3px 10px;
background: #1e3a8a;
color: #fff;
font-size: 12px;
margin-bottom: 12px;
}
.news-feature-title {
font-size: 16px;
font-weight: 600;
color: #1f2937;
line-height: 1.6;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.news-feature-date {
font-size: 12px;
color: #9ca3af;
}
.news-list {
background: #fff;
border: 1px solid #e5e7eb;
}
.news-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 22px;
border-bottom: 1px solid #f3f4f6;
cursor: pointer;
transition: background 0.2s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover {
background: #f9fafb;
}
.news-item:hover .news-item-title {
color: #1e3a8a;
}
.news-item-title {
flex: 1;
font-size: 14px;
color: #1f2937;
margin-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
transition: color 0.2s;
}
.news-item-date {
font-size: 13px;
color: #9ca3af;
flex-shrink: 0;
}
/* ========== 年度计划 ========== */
.plan-section {
background: #f5f6f8;
width: 100vw;
margin-left: calc(-50vw + 50%);
padding: 30px 0 40px;
position: relative;
}
.plan-section-inner {
max-width: 1354px;
margin: 0 auto;
padding: 0 60px;
}
.plan-overview {
font-size: 14px;
color: #4b5563;
line-height: 1.9;
margin-bottom: 24px;
background: #fff;
padding: 22px 26px;
border: 1px solid #e5e7eb;
}
.plan-image {
background: #fff;
border: 1px solid #e5e7eb;
padding: 24px;
}
.plan-image svg {
width: 100%;
height: auto;
display: block;
}
/* ========== 解读板块 ========== */
.interpret-section {
padding: 30px 0 40px;
}
.interpret-row {
display: flex;
align-items: center;
gap: 60px;
padding: 24px 0;
border-bottom: 1px solid #f3f4f6;
}
.interpret-row:last-child { border-bottom: none; }
.interpret-icon {
flex-shrink: 0;
width: 237px;
height: 54px;
background: #fff;
border: 1px solid #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
}
.interpret-icon img {
max-width: 100%;
max-height: 100%;
}
.interpret-text {
flex: 1;
font-size: 14px;
color: #4b5563;
line-height: 1.9;
}
.cta-area {
text-align: center;
padding: 40px 0 60px;
}
.cta-btn {
display: inline-block;
padding: 12px 48px;
background: #1e3a8a;
color: #fff;
font-size: 15px;
font-weight: 500;
cursor: pointer;
letter-spacing: 4px;
transition: background 0.2s;
}
.cta-btn:hover {
background: #1e40af;
}
/* ========== 底部 ========== */
.footer {
background: #16265a;
color: rgba(255, 255, 255, 0.65);
padding: 48px 0 0;
}
.footer-main {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.2fr auto;
gap: 48px;
padding-bottom: 36px;
}
.footer-brand .brand-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.footer-logo-icon {
width: 36px;
height: 36px;
background: #fff;
color: #1e3a8a;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 600;
flex-shrink: 0;
}
.footer-brand-name {
font-size: 16px;
font-weight: 600;
color: #fff;
letter-spacing: 1px;
}
.footer-brand-en {
font-size: 10px;
color: rgba(255, 255, 255, 0.4);
letter-spacing: 0.5px;
margin-top: 2px;
}
.footer-desc {
font-size: 13px;
line-height: 1.9;
color: rgba(255, 255, 255, 0.55);
}
.footer-col h4 {
font-size: 14px;
font-weight: 600;
color: #fff;
letter-spacing: 1px;
margin-bottom: 16px;
padding-bottom: 10px;
position: relative;
}
.footer-col h4::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 24px;
height: 2px;
background: #93c5fd;
}
.footer-col a,
.footer-col p {
display: block;
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
line-height: 2.1;
transition: color 0.2s;
}
.footer-col a { cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-qr {
text-align: center;
}
.qr-image {
width: 100px;
height: 100px;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
color: #1f2937;
}
.qr-label {
font-size: 12px;
color: rgba(255, 255, 255, 0.5);
margin-top: 10px;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.12);
padding: 18px 0;
display: flex;
justify-content: space-between;
font-size: 12px;
color: rgba(255, 255, 255, 0.4);
}
</style>
</head>
<body>
<!-- ===== 顶部导航 ===== -->
<header class="top-nav">
<a href="首页.html" class="logo">
<div class="logo-icon"></div>
<div class="logo-text">
<span class="logo-title">北京整合医学学会</span>
<span class="logo-subtitle">Beijing Association of Holistic Integrative Medicine</span>
</div>
</a>
<ul class="nav-list">
<li class="nav-item">
<a class="nav-link active">首页</a>
</li>
<li class="nav-item">
<span class="nav-link">关于学会</span>
<div class="nav-dropdown">
<div class="dropdown-item"><span class="dropdown-link">学会介绍</span></div>
<div class="dropdown-item"><span class="dropdown-link">学会领导</span></div>
<div class="dropdown-item"><span class="dropdown-link">组织架构</span></div>
<div class="dropdown-item"><span class="dropdown-link">分支机构</span></div>
<div class="dropdown-item"><span class="dropdown-link">职能部门</span></div>
<div class="dropdown-item"><span class="dropdown-link">规章制度</span></div>
<div class="dropdown-item"><span class="dropdown-link">荣誉展示</span></div>
<div class="dropdown-item"><span class="dropdown-link">联系我们</span></div>
<div class="dropdown-item">
<span class="dropdown-link">加入我们</span>
<div class="sub-dropdown">
<span class="dropdown-link">学术成果</span>
<span class="dropdown-link">获奖人才</span>
</div>
</div>
</div>
</li>
<li class="nav-item">
<span class="nav-link">学会动态</span>
<div class="nav-dropdown">
<div class="dropdown-item"><span class="dropdown-link">新闻资讯</span></div>
<div class="dropdown-item"><span class="dropdown-link">通知公告</span></div>
<div class="dropdown-item"><span class="dropdown-link">整合大会</span></div>
</div>
</li>
<li class="nav-item">
<span class="nav-link">学会项目</span>
<div class="nav-dropdown">
<div class="dropdown-item"><span class="dropdown-link">百姓巡常行</span></div>
<div class="dropdown-item"><span class="dropdown-link">专病联盟暨全国专家智库</span></div>
<div class="dropdown-item"><span class="dropdown-link">乡村幸福安康</span></div>
<div class="dropdown-item"><span class="dropdown-link">临床科研资助计划</span></div>
<div class="dropdown-item"><span class="dropdown-link">成果展示</span></div>
</div>
</li>
<li class="nav-item">
<span class="nav-link">党的建设</span>
<div class="nav-dropdown">
<div class="dropdown-item"><span class="dropdown-link">党建动态</span></div>
<div class="dropdown-item"><span class="dropdown-link">妇联动态</span></div>
<div class="dropdown-item"><span class="dropdown-link">工会动态</span></div>
<div class="dropdown-item"><span class="dropdown-link">团委动态</span></div>
<div class="dropdown-item"><span class="dropdown-link">科协动态</span></div>
<div class="dropdown-item"><span class="dropdown-link">政策法规</span></div>
</div>
</li>
<li class="nav-item">
<span class="nav-link">学会系统</span>
<div class="nav-dropdown">
<div class="dropdown-item"><span class="dropdown-link">证书查询</span></div>
<div class="dropdown-item"><span class="dropdown-link">会员服务</span></div>
<div class="dropdown-item"><span class="dropdown-link">合规系统</span></div>
<div class="dropdown-item"><span class="dropdown-link">OA系统</span></div>
</div>
</li>
</ul>
<div class="top-tools">
<div class="search-box">
<input type="text" class="search-input" placeholder="查找项目...">
<button class="search-btn" title="搜索">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<circle cx="11" cy="11" r="8"/>
<line x1="21" y1="21" x2="16.65" y2="16.65"/>
</svg>
</button>
</div>
<a class="user-link" id="userMenu">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/>
<circle cx="12" cy="7" r="4"/>
</svg>
<span>张三</span>
</a>
</div>
</header>
<!-- ===== 主体 ===== -->
<main class="container">
<!-- 主视觉横幅 -->
<section class="hero-banner">
<div class="hero-content">
<span class="hero-tag">BAHIM</span>
<h1 class="hero-title">健康中国 · 整合医学</h1>
<p class="hero-subtitle">
依托大政方针,整合医学资源,推动健康科普与公益事业,<br>
助力全民健康素养提升,共建共享健康中国。
</p>
<span class="hero-btn">了解年度计划</span>
</div>
<div class="hero-meta">
<div class="hero-meta-item">
<span class="num">300+</span>
<span class="label">病种覆盖</span>
</div>
<div class="hero-meta-item">
<span class="num">30+</span>
<span class="label">分支机构</span>
</div>
<div class="hero-meta-item">
<span class="num">50+</span>
<span class="label">合作单位</span>
</div>
</div>
</section>
<!-- 项目方案招募 -->
<section class="recruit-section">
<div class="section-title">项目方案招募</div>
<div class="plan-grid">
<div class="plan-card">
<div class="plan-card-image">
<span class="plan-card-tag">招募中</span>
<span class="num">01</span>
</div>
<div class="plan-card-body">
<h3 class="plan-card-title">百姓巡常行</h3>
<p class="plan-card-desc">面向社区开展健康科普巡讲,提升基层健康素养水平。</p>
<span class="plan-card-quarter">第一季度</span>
</div>
</div>
<div class="plan-card">
<div class="plan-card-image">
<span class="plan-card-tag">招募中</span>
<span class="num">02</span>
</div>
<div class="plan-card-body">
<h3 class="plan-card-title">专病联盟暨全国专家智库</h3>
<p class="plan-card-desc">汇聚全国专家力量,共建专病诊疗协同网络。</p>
<span class="plan-card-quarter">第二季度</span>
</div>
</div>
<div class="plan-card">
<div class="plan-card-image">
<span class="plan-card-tag">招募中</span>
<span class="num">03</span>
</div>
<div class="plan-card-body">
<h3 class="plan-card-title">乡村幸福安康</h3>
<p class="plan-card-desc">聚焦乡村振兴,推进乡村健康服务体系建设。</p>
<span class="plan-card-quarter">第三季度</span>
</div>
</div>
<div class="plan-card">
<div class="plan-card-image">
<span class="plan-card-tag">招募中</span>
<span class="num">04</span>
</div>
<div class="plan-card-body">
<h3 class="plan-card-title">临床科研资助计划</h3>
<p class="plan-card-desc">支持临床科研创新,推动整合医学成果转化应用。</p>
<span class="plan-card-quarter">第四季度</span>
</div>
</div>
</div>
</section>
<!-- 项目招募动态 -->
<section class="news-section">
<div class="section-title-row">
<div class="section-title">项目招募动态</div>
<a class="more-link">查看更多 →</a>
</div>
<div class="news-layout">
<div class="news-feature">
<div class="news-feature-image"><span class="placeholder">NEWS</span></div>
<div class="news-feature-body">
<span class="news-feature-tag">头条</span>
<h3 class="news-feature-title">健康中国行动 — 百姓健康卫士公益科普"百姓巡常行"项目试点成果发布</h3>
<span class="news-feature-date">2023-01-06</span>
</div>
</div>
<div class="news-list">
<div class="news-item">
<span class="news-item-title">XXXXXXXXXXXXXXXXX项目正式启动</span>
<span class="news-item-date">2023-01-06</span>
</div>
<div class="news-item">
<span class="news-item-title">健康中国行动 — 百姓健康卫士公益科普"百姓巡常行"项目试点成果发布</span>
<span class="news-item-date">2023-01-06</span>
</div>
<div class="news-item">
<span class="news-item-title">XXXXXXXXXXXXXXXXX项目圆满完成</span>
<span class="news-item-date">2023-01-06</span>
</div>
<div class="news-item">
<span class="news-item-title">乡村振兴 健康先行 | 北京整合医学学会2024年度慈善医疗帮扶</span>
<span class="news-item-date">2023-01-06</span>
</div>
<div class="news-item">
<span class="news-item-title">健康中国行动 — 百姓健康卫士公益科普"百姓巡常行"项目试点成果发布</span>
<span class="news-item-date">2023-01-06</span>
</div>
<div class="news-item">
<span class="news-item-title">"前腺守护"上线!用数字化为患者提供支持</span>
<span class="news-item-date">2023-01-06</span>
</div>
</div>
</div>
</section>
<!-- 年度项目计划 -->
<section class="plan-section">
<div class="plan-section-inner">
<div class="section-title-row">
<div class="section-title">年度项目计划概述</div>
<a class="more-link">查看详情 →</a>
</div>
<div class="plan-overview">
依托国家战略层面《"健康中国2030"规划纲要》和健康中国行动的统领力量,切合《全民健康素养提升三年行动方案(2024-2027年)》的契机,践行学会的公益性服务的责任和使命,全方位、全领域、体系性、系统性、持续性地开展健康科普活动,通过征集全国范围300个病种的健康科普短视频、科普讲座、科普文章,进行整个医疗系统的健康科普总动员,以科普内容征集促进科普活动走近、走深、走实。
</div>
<div class="plan-image">
<svg viewBox="0 150 1200 370" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="2025-2030年项目规划">
<defs>
<linearGradient id="arcGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#c7d2fe" stop-opacity="0.3"/>
<stop offset="50%" stop-color="#a5b4fc" stop-opacity="0.7"/>
<stop offset="100%" stop-color="#c7d2fe" stop-opacity="0.3"/>
</linearGradient>
<linearGradient id="hexGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#1e40af"/>
<stop offset="100%" stop-color="#1e3a8a"/>
</linearGradient>
<radialGradient id="centerGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1e3a8a"/>
<stop offset="100%" stop-color="#1e40af"/>
</radialGradient>
<radialGradient id="bgGlow" cx="600" cy="470" r="700" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#e0e7ff" stop-opacity="0.85"/>
<stop offset="55%" stop-color="#eef2ff" stop-opacity="0.4"/>
<stop offset="100%" stop-color="#eef2ff" stop-opacity="0"/>
</radialGradient>
<filter id="hexShadow" x="-50%" y="-50%" width="200%" height="200%">
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-opacity="0.18"/>
</filter>
</defs>
<!-- 背景光晕 -->
<circle cx="600" cy="470" r="700" fill="url(#bgGlow)"/>
<!-- 圆弧主线 (低平大圆, 半径 440.6, 圆心 (600, 680.6)) -->
<path d="M 213 470 A 440.6 440.6 0 0 1 987 470"
stroke="#c7d2fe" stroke-width="22" fill="none" opacity="0.35"/>
<path d="M 213 470 A 440.6 440.6 0 0 1 987 470"
stroke="url(#arcGrad)" stroke-width="3" fill="none"/>
<!-- 内圈虚线 -->
<path d="M 253 470 A 400 400 0 0 1 947 470"
stroke="#c7d2fe" stroke-width="1" fill="none" stroke-dasharray="3,4"/>
<!-- 弧线端点装饰 -->
<g>
<circle cx="213" cy="470" r="6" fill="#fff" stroke="#1e3a8a" stroke-width="2"/>
<circle cx="987" cy="470" r="6" fill="#fff" stroke="#1e3a8a" stroke-width="2"/>
</g>
<!-- 八个六边形节点 (沿 r=440.6 圆弧, 角度 151.4°→28.9°) -->
<g filter="url(#hexShadow)" font-family="Arial, sans-serif" font-weight="bold" fill="#fff" text-anchor="middle">
<g transform="translate(213 470)">
<polygon points="-34,0 -17,-29 17,-29 34,0 17,29 -17,29" fill="url(#hexGrad)"/>
<text y="7" font-size="22">01</text>
</g>
<g transform="translate(294 363)">
<polygon points="-30,0 -15,-26 15,-26 30,0 15,26 -15,26" fill="url(#hexGrad)"/>
<text y="6" font-size="19">02</text>
</g>
<g transform="translate(403 286)">
<polygon points="-28,0 -14,-24 14,-24 28,0 14,24 -14,24" fill="#1e3a8a"/>
<text y="6" font-size="18">03</text>
</g>
<g transform="translate(532 245)">
<polygon points="-28,0 -14,-24 14,-24 28,0 14,24 -14,24" fill="#1e3a8a"/>
<text y="6" font-size="18">04</text>
</g>
<g transform="translate(666 245)">
<polygon points="-28,0 -14,-24 14,-24 28,0 14,24 -14,24" fill="#1e3a8a"/>
<text y="6" font-size="18">05</text>
</g>
<g transform="translate(794 285)">
<polygon points="-28,0 -14,-24 14,-24 28,0 14,24 -14,24" fill="#1e3a8a"/>
<text y="6" font-size="18">06</text>
</g>
<g transform="translate(904 362)">
<polygon points="-30,0 -15,-26 15,-26 30,0 15,26 -15,26" fill="url(#hexGrad)"/>
<text y="6" font-size="19">07</text>
</g>
<g transform="translate(986 468)">
<polygon points="-34,0 -17,-29 17,-29 34,0 17,29 -17,29" fill="url(#hexGrad)"/>
<text y="7" font-size="22">08</text>
</g>
</g>
<!-- 中心医学十字 -->
<g transform="translate(600 360)">
<circle cx="0" cy="0" r="40" fill="#fff" stroke="#e0e7ff" stroke-width="2"/>
<circle cx="0" cy="0" r="30" fill="url(#centerGrad)"/>
<rect x="-16" y="-5" width="32" height="10" fill="#fff"/>
<rect x="-5" y="-16" width="10" height="32" fill="#fff"/>
</g>
<!-- 年份 -->
<text x="600" y="430" fill="#1e3a8a" text-anchor="middle"
font-family="Microsoft YaHei, sans-serif" font-size="32" font-weight="bold" letter-spacing="6">2025-2030年</text>
<line x1="540" y1="447" x2="600" y2="447" stroke="#1e3a8a" stroke-width="1.5" opacity="0.4"/>
<line x1="600" y1="447" x2="660" y2="447" stroke="#1e3a8a" stroke-width="1.5" opacity="0.4"/>
<!-- 八个标签 -->
<g fill="#374151" font-family="Microsoft YaHei, sans-serif" font-size="14" font-weight="500" letter-spacing="0.5">
<text x="170" y="411" text-anchor="end">
<tspan x="170" dy="0">触达100万+家</tspan>
<tspan x="170" dy="20">医疗卫生服务机构</tspan>
</text>
<text x="252" y="307" text-anchor="end">
<tspan x="252" dy="0">300万+专业医护</tspan>
<tspan x="252" dy="20">人员广泛参与</tspan>
</text>
<text x="362" y="232" text-anchor="end">
<tspan x="362" dy="0">培训100万+名</tspan>
<tspan x="362" dy="20">健康科普创作志愿者</tspan>
</text>
<text x="532" y="195" text-anchor="middle">
<tspan x="532" dy="0">赋能10万+名</tspan>
<tspan x="532" dy="20">健康科普传播志愿者</tspan>
</text>
<text x="666" y="195" text-anchor="middle">
<tspan x="666" dy="0">知识普及10亿+</tspan>
<tspan x="666" dy="20">人次人民群众</tspan>
</text>
<text x="835" y="231" text-anchor="start">
<tspan x="835" dy="0">覆盖4万+个</tspan>
<tspan x="835" dy="20">乡镇、街道</tspan>
</text>
<text x="946" y="306" text-anchor="start">
<tspan x="946" dy="0">1000万个流量平台</tspan>
<tspan x="946" dy="20">(用户数10万+)</tspan>
</text>
<text x="1029" y="409" text-anchor="start">
<tspan x="1029" dy="0">建设1万个</tspan>
<tspan x="1029" dy="20">健康小屋</tspan>
</text>
</g>
</svg>
</div>
</div>
</section>
<!-- 解读板块 -->
<section class="interpret-section">
<div class="section-title">项目解读</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u279.png" alt="政"></div>
<div class="interpret-text">
依托国家战略层面《"健康中国2030"规划纲要》和健康中国行动的统领力量,切合《全民健康素养提升三年行动方案(2024-2027年)》的锲机,践行学会的公益性服务的责任和使命,全方位、全领域、体系性、系统性、持续性地开展健康科普活动。
</div>
</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u283.png" alt="威"></div>
<div class="interpret-text">
征集的科普内容经过专家评审、剪辑制作、编辑后,将发表到项目专属云平台、北京整合医学学会官方公众号、视频号,并同步转载至相关权威大健康科普媒体平台、项目支持单位官方媒体平台。优质科普作品,将由有关国家级出版社编辑出版科普图书,正式出版发行。
</div>
</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u287.png" alt="链"></div>
<div class="interpret-text">
科普短视频、科普讲座和科普图书内容相互依联,互为导入,观看科普视频和科普讲座,会链接导入科普图书,阅读科普图书,会通过图书内文的二维码链接导入到科普视频,触达项目专属云平台,实现健康内容按需查看,使科普形式和内容适用于不同的人群和偏好。
</div>
</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u291.png" alt="调"></div>
<div class="interpret-text">
在健康知识传播的同时,还将邀请权威专家讲解国家有关方针政策,穿插在科普活动中,增强人民群众对国家方针政策的理解和认可度,促进百姓对医疗机构和医务工作者的理解和认可,降低医患矛盾,调和医患关系,减少医疗纠纷。
</div>
</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u295.png" alt="信"></div>
<div class="interpret-text">
在健康知识传播的同时,也会对当前及未来可能出现的生命科学研究成果进行宣讲和展望,涉及到新的诊疗技术、新的药品、器械、新的研究方向等方面,使人民群众树立起强大的生活信心和对美好生活向往的决心和勇气。
</div>
</div>
<div class="interpret-row">
<div class="interpret-icon"><img src="images/index/u299.png" alt="智"></div>
<div class="interpret-text">
在健康知识传播的同时,结合现代移动互联的技术进步,绘制医疗服务机构地图,提供医疗专家资源的动态分布信息,使人民群众能够及时就医,精准就医,就近就医,减少不必要的隐性医疗支出和经济负担,节约医疗资源,助推分级诊疗政策的贯彻实施。
</div>
</div>
</section>
<!-- 立即参与 -->
<div class="cta-area">
<span class="cta-btn">立即参与</span>
</div>
</main>
<!-- ===== 底部 ===== -->
<footer class="footer">
<div class="container">
<div class="footer-main">
<div class="footer-brand">
<div class="brand-row">
<div class="footer-logo-icon"></div>
<div>
<div class="footer-brand-name">北京整合医学学会</div>
<div class="footer-brand-en">Beijing Association of Holistic Integrative Medicine</div>
</div>
</div>
<p class="footer-desc">依托"健康中国2030"战略,整合医学资源,推动健康科普与公益事业,助力全民健康素养提升,共建共享健康中国。</p>
</div>
<div class="footer-col">
<h4>快速导航</h4>
<a href="首页.html">首页</a>
<a href="index2.html">年度项目规划</a>
<a href="项目公示.html">项目公示</a>
</div>
<div class="footer-col">
<h4>学会项目</h4>
<a>百姓巡常行</a>
<a>专病联盟暨全国专家智库</a>
<a>乡村幸福安康</a>
<a>临床科研资助计划</a>
</div>
<div class="footer-col">
<h4>联系方式</h4>
<p>电话: 010-82089470</p>
<p>邮箱: contactus@bahim.org.cn</p>
<p>地址: 北京市海淀区知春路1号学院国际大厦908-2室</p>
<p>邮编: 100083</p>
</div>
<div class="footer-qr">
<div class="qr-image">
<svg width="52" height="52" viewBox="0 0 24 24" fill="currentColor">
<path d="M3 11h8V3H3v8zm2-6h4v4H5V5zm8-2v8h8V3h-8zm6 6h-4V5h4v4zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm13-2h-2v2h2v-2zm-2 2h-2v2h2v-2zm2 2h-2v2h2v-2zm2-2h-2v2h2v-2zm-2-2h-2v2h2v-2zm-2-2h-2v2h2v-2zm-2 2h-2v2h2v-2zm0 0h-2v2h2v-2z"/>
</svg>
</div>
<div class="qr-label">公众号二维码</div>
</div>
</div>
<div class="footer-bottom">
<span>© 北京整合医学学会 BAHIM</span>
<span>京ICP备2020035479号-1 &nbsp;&nbsp; 京公网安备11010802034820</span>
</div>
</div>
</footer>
<script>
document.getElementById('userMenu').addEventListener('click', function() {
if (confirm('是否退出登录?')) {
window.location.href = '登录.html';
}
});
document.querySelector('.search-btn').addEventListener('click', function() {
const kw = document.querySelector('.search-input').value.trim();
if (kw) alert('搜索: ' + kw);
});
document.querySelector('.search-input').addEventListener('keydown', function(e) {
if (e.key === 'Enter') {
const kw = this.value.trim();
if (kw) alert('搜索: ' + kw);
}
});
// 滚动时加深导航栏阴影
const nav = document.querySelector('.top-nav');
window.addEventListener('scroll', function() {
if (window.scrollY > 10) {
nav.classList.add('is-scrolled');
} else {
nav.classList.remove('is-scrolled');
}
});
</script>
</body>
</html>