主要改动: - 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)
851 lines
31 KiB
HTML
851 lines
31 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;
|
|
}
|
|
|
|
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;
|
|
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 {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: 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%;
|
|
}
|
|
|
|
/* 顶部工具栏 */
|
|
.top-tools {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.login-btn {
|
|
padding: 7px 20px;
|
|
background: #fff;
|
|
color: #1e3a8a;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.login-btn:hover {
|
|
background: #f3f4f6;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
/* ========== Hero ========== */
|
|
.hero {
|
|
margin-top: 30px;
|
|
background: #1e3a8a;
|
|
color: #fff;
|
|
height: 280px;
|
|
padding: 0 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.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: 16px;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 38px;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
letter-spacing: 4px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.hero-desc {
|
|
font-size: 14px;
|
|
line-height: 1.9;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
max-width: 70%;
|
|
}
|
|
|
|
.hero-cta {
|
|
position: absolute;
|
|
right: 60px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.hero-cta .cta-btn {
|
|
display: inline-block;
|
|
padding: 12px 40px;
|
|
background: #fff;
|
|
color: #1e3a8a;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: 2px;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.hero-cta .cta-btn:hover {
|
|
background: #f3f4f6;
|
|
}
|
|
|
|
/* ========== 总述 ========== */
|
|
.overview-section {
|
|
padding: 50px 0 30px;
|
|
}
|
|
|
|
.overview-text {
|
|
font-size: 14px;
|
|
color: #4b5563;
|
|
line-height: 1.9;
|
|
background: #fff;
|
|
padding: 24px 28px;
|
|
border: 1px solid #e5e7eb;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.plan-image {
|
|
background: #fff;
|
|
border: 1px solid #e5e7eb;
|
|
padding: 24px;
|
|
}
|
|
|
|
.plan-image svg {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
/* ========== 七大专项 ========== */
|
|
.specialty-section {
|
|
background: #f5f6f8;
|
|
width: 100vw;
|
|
margin-left: calc(-50vw + 50%);
|
|
padding: 50px 0 40px;
|
|
position: relative;
|
|
}
|
|
|
|
.specialty-inner {
|
|
max-width: 1354px;
|
|
margin: 0 auto;
|
|
padding: 0 60px;
|
|
}
|
|
|
|
.specialty-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
.specialty-card {
|
|
background: #fff;
|
|
border: 1px solid #e5e7eb;
|
|
display: flex;
|
|
transition: border-color 0.2s, transform 0.2s;
|
|
}
|
|
|
|
.specialty-card:hover {
|
|
border-color: #1e3a8a;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.specialty-no {
|
|
flex-shrink: 0;
|
|
width: 80px;
|
|
background: #1e3a8a;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32px;
|
|
font-weight: 300;
|
|
font-family: ui-monospace, "Courier New", monospace;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.specialty-body {
|
|
flex: 1;
|
|
padding: 20px 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.specialty-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
margin-bottom: 10px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.specialty-desc {
|
|
font-size: 13px;
|
|
color: #6b7280;
|
|
line-height: 1.7;
|
|
flex: 1;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.specialty-action {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding-top: 14px;
|
|
border-top: 1px solid #f3f4f6;
|
|
}
|
|
|
|
.specialty-link {
|
|
font-size: 13px;
|
|
color: #1e3a8a;
|
|
cursor: pointer;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.specialty-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.specialty-link.disabled {
|
|
color: #9ca3af;
|
|
cursor: not-allowed;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* ========== 提示 ========== */
|
|
.notice-section {
|
|
padding: 30px 0 50px;
|
|
}
|
|
|
|
.notice-card {
|
|
background: #fff;
|
|
border: 1px solid #e5e7eb;
|
|
padding: 20px 24px;
|
|
}
|
|
|
|
.notice-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.notice-list li {
|
|
padding: 8px 0;
|
|
font-size: 13px;
|
|
color: #4b5563;
|
|
line-height: 1.7;
|
|
position: relative;
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.notice-list li::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 18px;
|
|
width: 4px;
|
|
height: 4px;
|
|
background: #1e3a8a;
|
|
}
|
|
|
|
.notice-list li strong {
|
|
color: #1e3a8a;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* ========== 底部 ========== */
|
|
.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" title="返回首页">
|
|
<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">
|
|
<span class="nav-link active">年度项目规划</span>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="项目公示.html">项目公示</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="top-tools">
|
|
<span class="login-btn" id="loginBtn">登录</span>
|
|
<a class="user-link" id="userMenu" style="display:none;">
|
|
<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">
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<div>
|
|
<span class="hero-tag">2025-2030</span>
|
|
<h1 class="hero-title">年度项目规划</h1>
|
|
<p class="hero-subtitle">七 大 专 项</p>
|
|
<p class="hero-desc">
|
|
围绕健康中国战略,聚焦医学整合创新,系统推进七大专项计划,<br>
|
|
全面构建覆盖诊疗、科研、人才、管理、公益、政学协作与组织建设的协同发展体系。
|
|
</p>
|
|
</div>
|
|
<div class="hero-cta">
|
|
<span class="cta-btn" id="heroSubmitBtn">项目提案</span>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- 总述 -->
|
|
<section class="overview-section">
|
|
<div class="section-title">年度项目规划概述</div>
|
|
<p class="overview-text">
|
|
依托国家战略层面《"健康中国2030"规划纲要》和健康中国行动的统领力量,切合《全民健康素养提升三年行动方案(2024-2027年)》的契机,践行学会的公益性服务的责任和使命,全方位、全领域、体系性、系统性、持续性地开展健康科普活动,通过征集全国范围300个病种的健康科普短视频、科普讲座、科普文章,进行整个医疗系统的健康科普总动员,以科普内容征集促进科普活动走近、走深、走实。
|
|
</p>
|
|
<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)"/>
|
|
<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>
|
|
<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>
|
|
</section>
|
|
|
|
<!-- 七大专项 -->
|
|
<section class="specialty-section">
|
|
<div class="specialty-inner">
|
|
<div class="section-title">七大专项计划</div>
|
|
<div class="specialty-list">
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">01</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《规范化诊疗及医疗质量提升专项计划(2026年)》</h3>
|
|
<p class="specialty-desc">聚焦临床诊疗规范制定与质量提升,推动各级医疗机构诊疗标准化、同质化。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">02</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《科研创新专项行动计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">支持医学科研创新,推动整合医学研究成果转化与产业化应用,构建协同创新生态。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">03</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《医疗卫生人才培育专项行动计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">建立多层次医学人才培养体系,重点加强基层医疗人才与跨学科复合型人才建设。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">04</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《医院管理及高质量发展促进专项计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">推动医院管理现代化,提升运营效率与服务水平,助力公立医院高质量发展。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">05</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《社会公益与可及性提升专项计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">聚焦医疗服务的可及性与公平性,开展公益救助、基层帮扶与健康科普活动。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">06</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《政学协作综合项目专项计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">搭建政府与学术机构协同平台,推动政策研究与决策支持,促进政产学研用深度融合。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="specialty-card">
|
|
<div class="specialty-no">07</div>
|
|
<div class="specialty-body">
|
|
<h3 class="specialty-title">《组织建设与内部治理专项计划(2026-2030年)》</h3>
|
|
<p class="specialty-desc">完善学会组织架构,健全内部治理机制,提升规范化、专业化、信息化管理水平。</p>
|
|
<div class="specialty-action">
|
|
<span class="specialty-link" data-require="login">查看详情</span>
|
|
<span class="specialty-link" data-require="login">项目提案</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- 提示 -->
|
|
<section class="notice-section">
|
|
<div class="section-title">参与说明</div>
|
|
<div class="notice-card">
|
|
<ul class="notice-list">
|
|
<li><strong>登录要求</strong> · 点击计划详情及项目提案,需先登录系统;</li>
|
|
<li><strong>支持方注册</strong> · 注册后默认为监察员角色,合规人员可配置支持方的管理员账号;</li>
|
|
<li><strong>支持方管理</strong> · 注册时选择的企业为主单位,默认进入该企业的人员管理页,由企业管理员进行管理,管理员账号可新建监督员账号;</li>
|
|
<li><strong>执行方注册</strong> · 注册跳转至供应商系统,走入库流程,注册成功后该账号默认为管理员账号,管理员账号可新建执行人员账号。</li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
|
|
</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-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 京公网安备11010802034820</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// 登录按钮
|
|
document.getElementById('loginBtn').addEventListener('click', function() {
|
|
window.location.href = '登录.html';
|
|
});
|
|
|
|
// 点击「项目提案」「查看详情」等需要登录的链接,跳转登录
|
|
document.querySelectorAll('[data-require="login"]').forEach(el => {
|
|
el.addEventListener('click', function() {
|
|
window.location.href = '登录.html';
|
|
});
|
|
});
|
|
|
|
// Hero 项目提案按钮
|
|
document.getElementById('heroSubmitBtn').addEventListener('click', function() {
|
|
window.location.href = '登录.html';
|
|
});
|
|
|
|
// 滚动时加深导航栏阴影
|
|
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>
|