home.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>留氏(衢州)族谱信息管理系统2026</title>
  7. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
  8. <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet">
  9. <style>
  10. body {
  11. background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  12. min-height: 100vh;
  13. font-family: 'Noto Serif SC', 'STSong', serif;
  14. }
  15. .hero-section {
  16. padding: 80px 0;
  17. position: relative;
  18. }
  19. .title-container {
  20. position: relative;
  21. z-index: 1;
  22. }
  23. .main-title {
  24. font-size: 2.5rem;
  25. font-weight: 700;
  26. color: #ffd700;
  27. text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  28. margin-bottom: 0.5rem;
  29. }
  30. .subtitle {
  31. font-size: 1.1rem;
  32. color: rgba(255,255,255,0.8);
  33. letter-spacing: 0.1em;
  34. }
  35. .card-custom {
  36. background: rgba(255,255,255,0.05);
  37. backdrop-filter: blur(10px);
  38. border: 1px solid rgba(255,255,255,0.1);
  39. border-radius: 16px;
  40. transition: transform 0.3s, box-shadow 0.3s;
  41. }
  42. .card-custom:hover {
  43. transform: translateY(-5px);
  44. box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  45. }
  46. .logo-circle {
  47. width: 120px;
  48. height: 120px;
  49. border-radius: 50%;
  50. background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.1));
  51. border: 3px solid #ffd700;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. margin: 0 auto;
  56. box-shadow: 0 0 30px rgba(255,215,0,0.3);
  57. }
  58. .logo-text {
  59. font-size: 5rem;
  60. font-weight: 700;
  61. color: #ffd700;
  62. font-family: 'Noto Serif SC', 'STSong', 'SimSun', serif;
  63. text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  64. }
  65. .section-title {
  66. font-size: 1.25rem;
  67. color: #ffd700;
  68. margin-bottom: 1.5rem;
  69. position: relative;
  70. padding-bottom: 10px;
  71. }
  72. .section-title::after {
  73. content: '';
  74. position: absolute;
  75. bottom: 0;
  76. left: 0;
  77. width: 60px;
  78. height: 2px;
  79. background: linear-gradient(90deg, #ffd700, transparent);
  80. }
  81. .member-name {
  82. font-size: 1.1rem;
  83. color: #fff;
  84. font-weight: 500;
  85. }
  86. .member-role {
  87. font-size: 0.9rem;
  88. color: rgba(255,255,255,0.6);
  89. }
  90. .nav-btn {
  91. background: linear-gradient(135deg, #ffd700, #ffb700);
  92. border: none;
  93. color: #1a1a2e;
  94. font-weight: 600;
  95. padding: 12px 30px;
  96. border-radius: 50px;
  97. transition: all 0.3s;
  98. }
  99. .nav-btn:hover {
  100. transform: scale(1.05);
  101. box-shadow: 0 10px 30px rgba(255,215,0,0.4);
  102. }
  103. .nav-btn-secondary {
  104. background: transparent;
  105. border: 1px solid rgba(255,255,255,0.3);
  106. color: #fff;
  107. font-weight: 500;
  108. padding: 12px 30px;
  109. border-radius: 50px;
  110. transition: all 0.3s;
  111. }
  112. .nav-btn-secondary:hover {
  113. background: rgba(255,255,255,0.1);
  114. border-color: rgba(255,255,255,0.5);
  115. }
  116. .stat-card {
  117. background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,183,0,0.05));
  118. border: 1px solid rgba(255,215,0,0.2);
  119. }
  120. .stat-number {
  121. font-size: 2.5rem;
  122. font-weight: 700;
  123. color: #ffd700;
  124. }
  125. .stat-label {
  126. color: rgba(255,255,255,0.7);
  127. font-size: 0.9rem;
  128. }
  129. .footer {
  130. padding: 30px 0;
  131. border-top: 1px solid rgba(255,255,255,0.1);
  132. }
  133. .footer-text {
  134. color: rgba(255,255,255,0.5);
  135. font-size: 0.9rem;
  136. }
  137. .logo-img {
  138. width: 120px;
  139. height: 120px;
  140. border-radius: 50%;
  141. border: 3px solid rgba(255,215,0,0.5);
  142. box-shadow: 0 10px 30px rgba(255,215,0,0.3);
  143. }
  144. </style>
  145. </head>
  146. <body>
  147. <!-- Hero Section -->
  148. <section class="hero-section text-center">
  149. <div class="container title-container">
  150. <div class="mb-6">
  151. <div class="logo-circle">
  152. <span class="logo-text">留</span>
  153. </div>
  154. </div>
  155. <h1 class="main-title">留氏(衢州)族谱信息管理系统</h1>
  156. <p class="subtitle">二〇二六年度版</p>
  157. <div class="mt-6">
  158. <a href="{{ url_for('members') }}" class="nav-btn me-3">
  159. <i class="bi bi-people me-2"></i>成员管理
  160. </a>
  161. <a href="{{ url_for('index') }}" class="nav-btn-secondary">
  162. <i class="bi bi-images me-2"></i>扫描件管理
  163. </a>
  164. </div>
  165. </div>
  166. </section>
  167. <!-- Quick Actions -->
  168. <section class="py-8">
  169. <div class="container">
  170. <h2 class="section-title text-center mb-8">快速导航</h2>
  171. <div class="row g-4">
  172. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  173. <a href="{{ url_for('members') }}" class="card-custom p-4 text-center text-decoration-none">
  174. <i class="bi bi-people text-3xl text-yellow-400 mb-3"></i>
  175. <div class="text-white font-medium">成员列表</div>
  176. </a>
  177. </div>
  178. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  179. <a href="{{ url_for('add_member') }}" class="card-custom p-4 text-center text-decoration-none">
  180. <i class="bi bi-user-plus text-3xl text-green-400 mb-3"></i>
  181. <div class="text-white font-medium">录入新成员</div>
  182. </a>
  183. </div>
  184. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  185. <a href="{{ url_for('tree') }}" class="card-custom p-4 text-center text-decoration-none">
  186. <i class="bi bi-tree text-3xl text-blue-400 mb-3"></i>
  187. <div class="text-white font-medium">关系树状图</div>
  188. </a>
  189. </div>
  190. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  191. <a href="{{ url_for('index') }}" class="card-custom p-4 text-center text-decoration-none">
  192. <i class="bi bi-images text-3xl text-purple-400 mb-3"></i>
  193. <div class="text-white font-medium">扫描件管理</div>
  194. </a>
  195. </div>
  196. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  197. <a href="{{ url_for('pdf_management') }}" class="card-custom p-4 text-center text-decoration-none">
  198. <i class="bi bi-file-pdf text-3xl text-red-400 mb-3"></i>
  199. <div class="text-white font-medium">家谱管理</div>
  200. </a>
  201. </div>
  202. <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
  203. <a href="{{ url_for('suspected_errors') }}" class="card-custom p-4 text-center text-decoration-none">
  204. <i class="bi bi-alert-circle text-3xl text-orange-400 mb-3"></i>
  205. <div class="text-white font-medium">疑似错误汇总</div>
  206. </a>
  207. </div>
  208. </div>
  209. </div>
  210. </section>
  211. <!-- Editorial Board Section -->
  212. <section class="py-12">
  213. <div class="container">
  214. <div class="card-custom p-6">
  215. <h2 class="section-title">编委会成员</h2>
  216. <!-- Chief Editor -->
  217. <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
  218. <i class="bi bi-star" style="color: #ffd700; font-size: 18px; width: 24px;"></i>
  219. <span style="color: #ffd700; font-weight: 600; font-size: 16px; width: 100px;">主编:</span>
  220. <span style="color: #ffffff; font-weight: 700; font-size: 16px;">留文正</span>
  221. </div>
  222. <!-- Editorial Committee -->
  223. <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); overflow-x: auto;">
  224. <i class="bi bi-users" style="color: #4285F4; font-size: 18px; width: 24px; flex-shrink: 0;"></i>
  225. <span style="color: #4285F4; font-weight: 600; font-size: 16px; width: 100px; flex-shrink: 0;">编委成员:</span>
  226. <div style="display: flex; flex-wrap: nowrap; gap: 6px;">
  227. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留忠德</span>
  228. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留文正</span>
  229. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留越</span>
  230. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留良吾</span>
  231. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留如藩</span>
  232. <span style="padding: 3px 10px; background: rgba(255,215,0,0.2); border-radius: 16px; color: #ffd700; font-weight: 500; font-size: 13px; white-space: nowrap;">留强</span>
  233. <span style="padding: 3px 10px; background: rgba(255,255,255,0.1); border-radius: 16px; color: rgba(255,255,255,0.6); font-size: 13px; white-space: nowrap;">……</span>
  234. </div>
  235. </div>
  236. <!-- External Advisor -->
  237. <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
  238. <i class="bi bi-chat-left" style="color: #34A853; font-size: 18px; width: 24px;"></i>
  239. <span style="color: #34A853; font-weight: 600; font-size: 16px; width: 100px;">外支顾问:</span>
  240. <span style="color: #ffffff; font-weight: 500; font-size: 16px;">留朝信</span>
  241. </div>
  242. <!-- System Planner -->
  243. <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
  244. <i class="bi bi-grid-3x3" style="color: #9C27B0; font-size: 18px; width: 24px;"></i>
  245. <span style="color: #9C27B0; font-weight: 600; font-size: 16px; width: 100px;">系统规划:</span>
  246. <span style="color: #ffffff; font-weight: 500; font-size: 16px;">留越</span>
  247. </div>
  248. <!-- Technical Implementation -->
  249. <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0;">
  250. <i class="bi bi-code" style="color: #FB8C00; font-size: 18px; width: 24px;"></i>
  251. <span style="color: #FB8C00; font-weight: 600; font-size: 16px; width: 100px;">技术实现:</span>
  252. <span style="color: #ffffff; font-weight: 500; font-size: 16px;">春笋秋竹(杭州)科技有限公司</span>
  253. </div>
  254. </div>
  255. </div>
  256. </section>
  257. <!-- Footer -->
  258. <footer class="footer text-center">
  259. <div class="container">
  260. <p class="footer-text">© 2026 留氏(衢州)族谱信息管理系统 | 传承家族文化,弘扬民族精神</p>
  261. </div>
  262. </footer>
  263. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  264. </body>
  265. </html>