| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>留氏(衢州)族谱信息管理系统2026</title>
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
- <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet">
- <style>
- body {
- background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
- min-height: 100vh;
- font-family: 'Noto Serif SC', 'STSong', serif;
- }
-
- .hero-section {
- padding: 80px 0;
- position: relative;
- }
-
- .title-container {
- position: relative;
- z-index: 1;
- }
-
- .main-title {
- font-size: 2.5rem;
- font-weight: 700;
- color: #ffd700;
- text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
- margin-bottom: 0.5rem;
- }
-
- .subtitle {
- font-size: 1.1rem;
- color: rgba(255,255,255,0.8);
- letter-spacing: 0.1em;
- }
-
- .card-custom {
- background: rgba(255,255,255,0.05);
- backdrop-filter: blur(10px);
- border: 1px solid rgba(255,255,255,0.1);
- border-radius: 16px;
- transition: transform 0.3s, box-shadow 0.3s;
- }
-
- .card-custom:hover {
- transform: translateY(-5px);
- box-shadow: 0 20px 40px rgba(0,0,0,0.3);
- }
-
- .logo-circle {
- width: 120px;
- height: 120px;
- border-radius: 50%;
- background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.1));
- border: 3px solid #ffd700;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 auto;
- box-shadow: 0 0 30px rgba(255,215,0,0.3);
- }
-
- .logo-text {
- font-size: 5rem;
- font-weight: 700;
- color: #ffd700;
- font-family: 'Noto Serif SC', 'STSong', 'SimSun', serif;
- text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
- }
-
- .section-title {
- font-size: 1.25rem;
- color: #ffd700;
- margin-bottom: 1.5rem;
- position: relative;
- padding-bottom: 10px;
- }
-
- .section-title::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 60px;
- height: 2px;
- background: linear-gradient(90deg, #ffd700, transparent);
- }
-
- .member-name {
- font-size: 1.1rem;
- color: #fff;
- font-weight: 500;
- }
-
- .member-role {
- font-size: 0.9rem;
- color: rgba(255,255,255,0.6);
- }
-
- .nav-btn {
- background: linear-gradient(135deg, #ffd700, #ffb700);
- border: none;
- color: #1a1a2e;
- font-weight: 600;
- padding: 12px 30px;
- border-radius: 50px;
- transition: all 0.3s;
- }
-
- .nav-btn:hover {
- transform: scale(1.05);
- box-shadow: 0 10px 30px rgba(255,215,0,0.4);
- }
-
- .nav-btn-secondary {
- background: transparent;
- border: 1px solid rgba(255,255,255,0.3);
- color: #fff;
- font-weight: 500;
- padding: 12px 30px;
- border-radius: 50px;
- transition: all 0.3s;
- }
-
- .nav-btn-secondary:hover {
- background: rgba(255,255,255,0.1);
- border-color: rgba(255,255,255,0.5);
- }
-
- .stat-card {
- background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,183,0,0.05));
- border: 1px solid rgba(255,215,0,0.2);
- }
-
- .stat-number {
- font-size: 2.5rem;
- font-weight: 700;
- color: #ffd700;
- }
-
- .stat-label {
- color: rgba(255,255,255,0.7);
- font-size: 0.9rem;
- }
-
- .footer {
- padding: 30px 0;
- border-top: 1px solid rgba(255,255,255,0.1);
- }
-
- .footer-text {
- color: rgba(255,255,255,0.5);
- font-size: 0.9rem;
- }
-
- .logo-img {
- width: 120px;
- height: 120px;
- border-radius: 50%;
- border: 3px solid rgba(255,215,0,0.5);
- box-shadow: 0 10px 30px rgba(255,215,0,0.3);
- }
- </style>
- </head>
- <body>
- <!-- Hero Section -->
- <section class="hero-section text-center">
- <div class="container title-container">
- <div class="mb-6">
- <div class="logo-circle">
- <span class="logo-text">留</span>
- </div>
- </div>
- <h1 class="main-title">留氏(衢州)族谱信息管理系统</h1>
- <p class="subtitle">二〇二六年度版</p>
- <div class="mt-6">
- <a href="{{ url_for('members') }}" class="nav-btn me-3">
- <i class="bi bi-people me-2"></i>成员管理
- </a>
- <a href="{{ url_for('index') }}" class="nav-btn-secondary">
- <i class="bi bi-images me-2"></i>扫描件管理
- </a>
- </div>
- </div>
- </section>
- <!-- Quick Actions -->
- <section class="py-8">
- <div class="container">
- <h2 class="section-title text-center mb-8">快速导航</h2>
- <div class="row g-4">
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('members') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-people text-3xl text-yellow-400 mb-3"></i>
- <div class="text-white font-medium">成员列表</div>
- </a>
- </div>
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('add_member') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-user-plus text-3xl text-green-400 mb-3"></i>
- <div class="text-white font-medium">录入新成员</div>
- </a>
- </div>
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('tree') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-tree text-3xl text-blue-400 mb-3"></i>
- <div class="text-white font-medium">关系树状图</div>
- </a>
- </div>
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('index') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-images text-3xl text-purple-400 mb-3"></i>
- <div class="text-white font-medium">扫描件管理</div>
- </a>
- </div>
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('pdf_management') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-file-pdf text-3xl text-red-400 mb-3"></i>
- <div class="text-white font-medium">家谱管理</div>
- </a>
- </div>
- <div class="col-lg-2 col-md-3 col-sm-4 mb-4">
- <a href="{{ url_for('suspected_errors') }}" class="card-custom p-4 text-center text-decoration-none">
- <i class="bi bi-alert-circle text-3xl text-orange-400 mb-3"></i>
- <div class="text-white font-medium">疑似错误汇总</div>
- </a>
- </div>
- </div>
- </div>
- </section>
- <!-- Editorial Board Section -->
- <section class="py-12">
- <div class="container">
- <div class="card-custom p-6">
- <h2 class="section-title">编委会成员</h2>
-
- <!-- Chief Editor -->
- <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
- <i class="bi bi-star" style="color: #ffd700; font-size: 18px; width: 24px;"></i>
- <span style="color: #ffd700; font-weight: 600; font-size: 16px; width: 100px;">主编:</span>
- <span style="color: #ffffff; font-weight: 700; font-size: 16px;">留文正</span>
- </div>
-
- <!-- Editorial Committee -->
- <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;">
- <i class="bi bi-users" style="color: #4285F4; font-size: 18px; width: 24px; flex-shrink: 0;"></i>
- <span style="color: #4285F4; font-weight: 600; font-size: 16px; width: 100px; flex-shrink: 0;">编委成员:</span>
- <div style="display: flex; flex-wrap: nowrap; gap: 6px;">
- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
- <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>
- </div>
- </div>
-
- <!-- External Advisor -->
- <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
- <i class="bi bi-chat-left" style="color: #34A853; font-size: 18px; width: 24px;"></i>
- <span style="color: #34A853; font-weight: 600; font-size: 16px; width: 100px;">外支顾问:</span>
- <span style="color: #ffffff; font-weight: 500; font-size: 16px;">留朝信</span>
- </div>
-
- <!-- System Planner -->
- <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1);">
- <i class="bi bi-grid-3x3" style="color: #9C27B0; font-size: 18px; width: 24px;"></i>
- <span style="color: #9C27B0; font-weight: 600; font-size: 16px; width: 100px;">系统规划:</span>
- <span style="color: #ffffff; font-weight: 500; font-size: 16px;">留越</span>
- </div>
-
- <!-- Technical Implementation -->
- <div style="display: flex; align-items: center; gap: 12px; padding: 12px 0;">
- <i class="bi bi-code" style="color: #FB8C00; font-size: 18px; width: 24px;"></i>
- <span style="color: #FB8C00; font-weight: 600; font-size: 16px; width: 100px;">技术实现:</span>
- <span style="color: #ffffff; font-weight: 500; font-size: 16px;">春笋秋竹(杭州)科技有限公司</span>
- </div>
- </div>
- </div>
- </section>
- <!-- Footer -->
- <footer class="footer text-center">
- <div class="container">
- <p class="footer-text">© 2026 留氏(衢州)族谱信息管理系统 | 传承家族文化,弘扬民族精神</p>
- </div>
- </footer>
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
- </body>
- </html>
|