- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>葛亦民网 - 现代化重构版</title>
- <meta name="description" content="基督教共产主义,紫薇圣人,大同世界">
- <meta name="keywords" content="基督教共产主义,紫微圣人,神网,神经,神教,网哲">
- <!-- 所有链接默认在新窗口打开 -->
- <base target="_blank">
-
- <style>
- /* --- 核心变量 (配色方案) --- */
- :root {
- --primary: #2c3e50; /* 主色:深蓝灰,稳重 */
- --accent: #c0392b; /* 强调色:深红,醒目 */
- --bg-body: #f4f6f8; /* 背景色:浅灰,护眼 */
- --bg-card: #ffffff;
- --text-main: #2c3e50;
- --text-sub: #7f8c8d;
- --border-radius: 8px;
- --shadow: 0 4px 12px rgba(0,0,0,0.05);
- --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- }
- /* --- 基础重置 --- */
- * { box-sizing: border-box; margin: 0; padding: 0; }
-
- body {
- font-family: var(--font-stack);
- background-color: var(--bg-body);
- color: var(--text-main);
- line-height: 1.6;
- font-size: 15px;
- padding-bottom: 2rem;
- }
- a { color: #2980b9; text-decoration: none; transition: color 0.2s; }
- a:hover { color: var(--accent); }
- /* --- 布局容器 --- */
- .container {
- max-width: 1000px;
- margin: 0 auto;
- padding: 0 1rem;
- }
- /* --- 头部 Header --- */
- header {
- background: var(--bg-card);
- padding: 1.5rem 0;
- text-align: center;
- box-shadow: 0 2px 5px rgba(0,0,0,0.03);
- margin-bottom: 1.5rem;
- }
-
- .logo-area img { max-height: 80px; width: auto; max-width: 100%; }
-
- /* --- 导航栏 --- */
- .main-nav {
- background: #fff;
- position: sticky;
- top: 0;
- z-index: 100;
- border-bottom: 1px solid #eee;
- box-shadow: 0 2px 4px rgba(0,0,0,0.05);
- margin-bottom: 2rem;
- }
- .nav-list {
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- list-style: none;
- padding: 0.8rem 0;
- gap: 10px;
- }
-
- .nav-list a {
- padding: 0.5rem 1.2rem;
- border-radius: 20px;
- font-weight: 600;
- color: var(--text-main);
- background: #f1f2f6;
- font-size: 0.95rem;
- }
- .nav-list a:hover {
- background: var(--primary);
- color: #fff;
- }
- /* --- 通用卡片样式 --- */
- .card {
- background: var(--bg-card);
- border-radius: var(--border-radius);
- padding: 1.5rem;
- margin-bottom: 1.5rem;
- box-shadow: var(--shadow);
- }
- .section-title {
- font-size: 1.2rem;
- border-left: 4px solid var(--accent);
- padding-left: 0.8rem;
- margin-bottom: 1rem;
- color: var(--primary);
- font-weight: 700;
- }
- /* --- 选项卡系统 (Tabs) --- */
- .resource-tabs {
- background: #fff;
- border-radius: var(--border-radius);
- box-shadow: var(--shadow);
- overflow: hidden;
- margin-bottom: 2rem;
- }
- .tabs-header {
- display: flex;
- background: #f8f9fa;
- border-bottom: 1px solid #eee;
- overflow-x: auto;
- white-space: nowrap;
- -webkit-overflow-scrolling: touch;
- }
- .tabs-header::-webkit-scrollbar { display: none; } /* 隐藏滚动条 */
- .tab-btn {
- padding: 1rem 1.5rem;
- border: none;
- background: none;
- font-size: 1rem;
- font-weight: 600;
- color: var(--text-sub);
- cursor: pointer;
- position: relative;
- flex-shrink: 0;
- transition: color 0.3s;
- }
- .tab-btn.active { color: var(--primary); background: #fff; }
-
- .tab-btn.active::after {
- content: '';
- position: absolute;
- bottom: 0; left: 0; right: 0;
- height: 3px;
- background-color: var(--accent);
- }
- .tab-content {
- padding: 1.5rem;
- display: none; /* 默认隐藏 */
- animation: fadeIn 0.3s ease;
- }
-
- .tab-content.active { display: block; }
- @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
- /* --- 链接标签样式 (Grid) --- */
- .link-grid {
- display: flex;
- flex-wrap: wrap;
- gap: 10px;
- }
- .link-tag {
- display: inline-flex;
- align-items: center;
- padding: 6px 14px;
- background: #f8f9fa;
- border: 1px solid #e9ecef;
- border-radius: 4px;
- font-size: 0.9rem;
- color: var(--text-main);
- transition: all 0.2s;
- }
- .link-tag:hover {
- border-color: var(--primary);
- color: #fff;
- background: var(--primary);
- text-decoration: none;
- }
-
- .link-tag.important {
- background: #eaf2f8;
- color: #2980b9;
- font-weight: bold;
- border-color: #d6eaf8;
- }
- .link-tag.important:hover { background: #2980b9; color: #fff; }
- .group-title {
- font-size: 0.85rem;
- color: #95a5a6;
- text-transform: uppercase;
- letter-spacing: 1px;
- margin: 0 0 0.8rem 0;
- font-weight: 700;
- }
- .group-block { margin-bottom: 1.5rem; }
- .group-block:last-child { margin-bottom: 0; }
- /* --- 折叠目录 (Accordion) --- */
- details.volume-section {
- background: #fff;
- border: 1px solid #eee;
- border-radius: var(--border-radius);
- margin-bottom: 0.8rem;
- overflow: hidden;
- }
- details.volume-section summary {
- padding: 1rem;
- background: #fdfdfd;
- cursor: pointer;
- font-weight: 600;
- color: var(--primary);
- list-style: none;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
- details.volume-section summary::-webkit-details-marker { display: none; }
- details.volume-section summary::after { content: '+'; font-size: 1.2rem; color: #ccc; }
- details.volume-section[open] summary::after { content: '-'; }
- details.volume-section[open] summary { border-bottom: 1px solid #eee; background: #fafafa; }
- .volume-content {
- padding: 1.5rem;
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
- gap: 10px;
- }
-
- .chapter-link {
- text-align: center;
- padding: 5px;
- background: #fff;
- border: 1px solid #eee;
- border-radius: 4px;
- font-size: 0.85rem;
- color: #555;
- }
- .chapter-link:hover { border-color: var(--accent); color: var(--accent); }
- /* --- 新闻列表 --- */
- .news-list { list-style: none; }
- .news-list li {
- padding: 0.8rem 0;
- border-bottom: 1px solid #eee;
- }
- .news-list li:last-child { border-bottom: none; }
- .news-title { display: block; font-weight: 600; margin-bottom: 0.2rem; }
- .news-meta { font-size: 0.85rem; color: #999; }
- /* --- 倒计时 --- */
- .countdown-box {
- background: linear-gradient(135deg, #2c3e50, #4ca1af);
- color: white;
- text-align: center;
- padding: 2rem;
- border-radius: var(--border-radius);
- margin-top: 2rem;
- }
- .timer-display {
- font-family: monospace;
- font-size: 1.8rem;
- font-weight: bold;
- color: #ffeaa7;
- margin-top: 0.5rem;
- }
- /* --- 页脚 --- */
- footer {
- margin-top: 3rem;
- padding: 2rem 0;
- border-top: 1px solid #ddd;
- text-align: center;
- font-size: 0.85rem;
- color: var(--text-sub);
- }
-
- /* --- 移动端适配 --- */
- @media (max-width: 600px) {
- .nav-list a { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
- .volume-content { grid-template-columns: repeat(3, 1fr); }
- .timer-display { font-size: 1.2rem; }
- }
- </style>
- </head>
- <body>
- <!-- 1. 头部区域 -->
- <header>
- <div class="container">
- <div class="logo-area">
- <a href="https://web.geyimin.net/bbs"><img src="pic/ban.jpg" alt="葛亦民网 Banner"></a>
- </div>
- </div>
- </header>
- <!-- 2. 导航栏 -->
- <nav class="main-nav">
- <div class="container">
- <ul class="nav-list">
- <li><a href="xw.html">文化</a></li>
- <li><a href="wx.html">文学</a></li>
- <li><a href="gzly/zp.htm">照片墙</a></li>
- <li><a href="nszz/gymsp.htm">视频</a></li>
- <li><a href="https://web.geyimin.net/bbs">社区</a></li>
- <li><a href="https://web.geyimin.net/club">论坛</a></li>
- </ul>
- </div>
- </nav>
- <main class="container">
- <!-- 3. 资源下载中心 (Tab 布局 - 核心优化部分) -->
- <section class="resource-tabs">
- <!-- Tab 头部按钮 -->
- <div class="tabs-header">
- <button class="tab-btn active" onclick="openTab(event, 'tab-neuro')">神经下载 (Neuro)</button>
- <button class="tab-btn" onclick="openTab(event, 'tab-multi')">多语言 (Languages)</button>
- <button class="tab-btn" onclick="openTab(event, 'tab-anecdotes')">异闻录 (Anecdotes)</button>
- <button class="tab-btn" onclick="openTab(event, 'tab-others')">其他刊物</button>
- </div>
- <!-- Tab 1: 神经中英文 -->
- <div id="tab-neuro" class="tab-content active">
- <div class="group-block">
- <h3 class="group-title">中文版本 (Chinese)</h3>
- <div class="link-grid">
- <a href="word.html" class="link-tag important">在线阅读</a>
- <a href="pic/sj.rar" class="link-tag">TXT 打包下载</a>
- <a href="pic/sj.doc" class="link-tag">DOC</a>
- <a href="pic/sj.pdf" class="link-tag">PDF</a>
- <a href="pic/sj.txt" class="link-tag">纯文本 TXT</a>
- </div>
- </div>
- <hr style="border:0; border-top:1px dashed #eee; margin: 1rem 0;">
- <div class="group-block">
- <h3 class="group-title">英文版本 (English)</h3>
- <div class="link-grid">
- <a href="wordusa.docx" class="link-tag">Word of God (doc)</a>
- <a href="dxly/wordusa.txt" class="link-tag">TXT</a>
- <a href="dxly/wordusa.rar" class="link-tag">RAR</a>
- <a href="dxly/wordusa.pdf" class="link-tag">PDF</a>
- <a href="dxly/wordusa.html" class="link-tag">HTML</a>
- </div>
- </div>
- </div>
- <!-- Tab 2: 多语言 -->
- <div id="tab-multi" class="tab-content">
- <div class="group-block">
- <h3 class="group-title">全球译本 (Translations)</h3>
- <div class="link-grid">
- <a href="dxly/fy.htm" class="link-tag">Française (法語)</a>
- <a href="dxly/xby.htm" class="link-tag">Español (西語)</a>
- <a href="dxly/pty.htm" class="link-tag">Português (葡語)</a>
- <a href="dxly/ey.htm" class="link-tag">Русский (俄語)</a>
- <a href="dxly/alb.htm" class="link-tag">الله (阿拉伯語)</a>
- <a href="dxly/ft.htm" class="link-tag">繁体中文</a>
- <a href="dxly/rw.htm" class="link-tag">日本語</a>
- <a href="dxly/hy.htm" class="link-tag">한국어 (韓語)</a>
- </div>
- </div>
- </div>
- <!-- Tab 3: 异闻录 -->
- <div id="tab-anecdotes" class="tab-content">
- <div class="group-block">
- <h3 class="group-title">葛亦民异闻录 (中文)</h3>
- <div class="link-grid">
- <a href="pic/gsywl.html" class="link-tag">HTML</a>
- <a href="pic/gsywl.txt" class="link-tag">TXT</a>
- <a href="pic/gsywl.rar" class="link-tag">RAR</a>
- <a href="pic/gsywl.docx" class="link-tag">DOC</a>
- <a href="pic/gsywl.pdf" class="link-tag">PDF</a>
- </div>
- </div>
- <hr style="border:0; border-top:1px dashed #eee; margin: 1rem 0;">
- <div class="group-block">
- <h3 class="group-title">Anecdote of Geyimin (English)</h3>
- <div class="link-grid">
- <a href="pic/anecdoteofgeyimin.html" class="link-tag">HTML</a>
- <a href="pic/anecdoteofgeyimin.txt" class="link-tag">TXT</a>
- <a href="pic/anecdoteofgeyimin.rar" class="link-tag">RAR</a>
- <a href="pic/anecdoteofgeyimin.docx" class="link-tag">DOC</a>
- <a href="pic/anecdoteofgeyimin.pdf" class="link-tag">PDF</a>
- </div>
- </div>
- </div>
- <!-- Tab 4: 其他刊物 -->
- <div id="tab-others" class="tab-content">
- <div class="group-block">
- <h3 class="group-title">报刊与杂志</h3>
- <div class="link-grid">
- <a href="scsl/jg.htm" class="link-tag important" style="background:#fff3e0; color:#d35400; border-color:#ffe0b2;">
- 📰 基督教共产主义快报
- </a>
- </div>
- </div>
- </div>
- </section>
- <!-- 4. 六大卷内容 (使用折叠面板,大量节省空间) -->
- <h2 style="font-size:1.1rem; color:#aaa; margin-bottom:1rem; padding-left:0.5rem;">著作章节目录:</h2>
- <!-- 第1卷 -->
- <details class="volume-section" open>
- <summary>第一卷:葛亦民异闻录之纯真年代(1969年1月–1990年7月)</summary>
- <div class="volume-content" id="vol1-links">
- <!-- JS生成链接 -->
- </div>
- </details>
- <!-- 第2卷 -->
- <details class="volume-section">
- <summary>第二卷:葛亦民异闻录之江湖岁月(1989年6月–1990年7月)</summary>
- <div class="volume-content" id="vol2-links"></div>
- </details>
- <!-- 第3卷 -->
- <details class="volume-section">
- <summary>第三卷:葛亦民异闻录之飞越疯人院(1990年12月–今)</summary>
- <div class="volume-content" id="vol3-links"></div>
- </details>
- <!-- 第4卷 -->
- <details class="volume-section">
- <summary>第四卷:葛亦民异闻录之葛亦民和他的女人们(1990年8月–今)</summary>
- <div class="volume-content" id="vol4-links"></div>
- </details>
- <!-- 第5卷 -->
- <details class="volume-section">
- <summary>第五卷:葛亦民异闻录之网络生涯(2001年3月–今)</summary>
- <div class="volume-content" id="vol5-links"></div>
- </details>
- <!-- 第6卷 -->
- <details class="volume-section">
- <summary>第六卷:葛亦民异闻录之成圣之路(2001年4月–今)</summary>
- <div class="volume-content" id="vol6-links"></div>
- </details>
- <!-- 5. 新闻与评论 -->
- <div class="card">
- <h2 class="section-title">新闻动态与神学评论</h2>
- <ul class="news-list">
- <li>
- <a href="http://www.cnki.com.cn/Article/CJFDTotal-QNWJ201511133.htm" class="news-title">中国知网《青年文学家》2015年4月11期</a>
- <div class="news-meta">收录论文:《当代基督教共产主义—葛亦民的<神经>》</div>
- </li>
- <li>
- <a href="../gzly/qqxw.jpg" class="news-title">腾讯新闻 - 天天快报</a>
- <div class="news-meta">报道:社会化大生产和互联网大革命</div>
- </li>
- <li>
- <a href="../gzly/163xw.jpg" class="news-title">网易新闻</a>
- <div class="news-meta">评论:和其他意大利或者西班牙的报纸一样,毕竟不是《耶梅经》</div>
- </li>
- <li>
- <a href="../gzly/pcpopxw.jpg" class="news-title">泡泡网 (PCPOP)</a>
- <div class="news-meta">报道:恰巧验证了《耶梅经》中有关世界末日的预言</div>
- </li>
- <li>
- <a href="fygc/gcsj.htm" class="news-title">神学定义:葛亦民神</a>
- <div class="news-meta">“比上帝高二层,比人类高三层。上帝: ‘葛亦民创造了造物主,造物主创造了上帝,上帝创造了人类。’”</div>
- </li>
- <li>
- <a href="fygc/4tq.htm" class="news-title">人物百科:葛亦民</a>
- <div class="news-meta">伟大的互联网宗教家思想家活动家,香港四季出版社签约作家。紫薇圣人,神,共产主义领袖。</div>
- </li>
- </ul>
- </div>
- <!-- 6. 视频库与联系方式 -->
- <div class="card" style="background-color: #f8fcfd;">
- <h2 class="section-title">视频资源与联系</h2>
-
- <div style="margin-bottom: 1.5rem;">
- <strong style="color:#666;">视频矩阵:</strong>
- <div class="link-grid" style="margin-top: 0.5rem;">
- <a href="https://v.geyimin.top/index.html" class="link-tag important">Blaze 视频库</a>
- <a href="http://v.20331126.xyz:8080" class="link-tag">官方视频库</a>
- <a href="http://fr.geyimin.net:8080" class="link-tag">Free 视频库</a>
- <a href="http://v.geyimin.net:8080" class="link-tag">镜像视频库</a>
- </div>
- </div>
- <div>
- <strong style="color:#666;">联系与互动:</strong>
- <div class="link-grid" style="margin-top: 0.5rem;">
- <a href="mailto:[email protected]" class="link-tag">Email: [email protected]</a>
- <span class="link-tag">微信/支付宝: 13952819473</span>
- <a href="lj.html" class="link-tag">网站群</a>
- <a href="scsl/wx.html" class="link-tag important" style="background: #27ae60; color:white; border:none;">加入葛亦民</a>
- <a href="dxly/gwmfx.htm" class="link-tag" style="color: #c0392b;">功德箱</a>
- </div>
- <div style="margin-top: 10px; font-size: 0.85rem; color: #7f8c8d;">
- 微信公众号:geyimin2033 / xyz20331126
- </div>
- </div>
- </div>
- <!-- 7. 倒计时区域 -->
- <div class="countdown-box">
- <div style="font-size: 1.1rem; opacity: 0.9;">距离 2033年11月26日 世界大同还有:</div>
- <div class="timer-display">
- <span id="t_d">0</span>天 <span id="t_h">00</span>时 <span id="t_m">00</span>分 <span id="t_s">00</span>秒
- </div>
- </div>
- </main>
- <!-- 8. 页脚与统计 -->
- <footer>
- <div class="container">
- <div style="display:flex; justify-content:center; align-items:center; gap:15px; margin-bottom:1rem;">
- <a href="pic/sj.txt"><img src="gzly/bzz.png" width="24" height="24" border="0" alt="icon"></a>
- <span style="display:flex; align-items:center;">
- <img src="pic/beian.png" width="13" height="16" alt="备案" style="margin-right:5px;"/>
- 苏公网安备 32110202000012号
- </span>
- </div>
- <p>© 2033 Geyimin.net All Rights Reserved.</p>
- </div>
-
- <!-- 广告位 -->
- <div style="margin-top: 2rem;">
- <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <ins class="adsbygoogle"
- style="display:block"
- data-ad-client="ca-pub-4478354601389172"
- data-ad-slot="2825366864"
- data-ad-format="auto"
- data-full-width-responsive="true"></ins>
- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script>
- </div>
- </footer>
- <!-- 逻辑脚本 -->
- <script>
- // --- 1. 选项卡切换逻辑 ---
- function openTab(evt, tabName) {
- // 隐藏所有内容
- var tabcontent = document.getElementsByClassName("tab-content");
- for (var i = 0; i < tabcontent.length; i++) {
- tabcontent[i].style.display = "none";
- tabcontent[i].classList.remove("active");
- }
- // 移除按钮激活状态
- var tablinks = document.getElementsByClassName("tab-btn");
- for (var i = 0; i < tablinks.length; i++) {
- tablinks[i].classList.remove("active");
- }
- // 显示目标内容
- var target = document.getElementById(tabName);
- target.style.display = "block";
- // 延时添加class触发动画
- setTimeout(function() {
- target.classList.add("active");
- }, 10);
-
- evt.currentTarget.classList.add("active");
- }
- // --- 2. 自动生成大量章节链接 (避免代码冗余) ---
- function generateLinks(containerId, folder, prefix, start, end) {
- const container = document.getElementById(containerId);
- let html = '';
- for (let i = start; i <= end; i++) {
- let chapterName = `第${i}章`;
- if(i > 100) chapterName = `第一百${i===100?'':(i-100<10?'0':'') + (i-100)}章`.replace('百10', '百十').replace('百0', '百零'); // 简单处理中文数字习惯
- if(i == 100) chapterName = "第一百章";
-
- // 统一使用阿拉伯数字显示以保持整洁,或保持原样
- html += `<a href="${folder}/${prefix}${i}.htm" class="chapter-link">第 ${i} 章</a>`;
- }
- container.innerHTML = html;
- }
- // 生成各卷链接
- generateLinks('vol1-links', 'dxly', 'cz', 1, 107);
- generateLinks('vol2-links', 'dxly', 'jhsy', 1, 10);
- generateLinks('vol3-links', 'dxly', 'fyfry', 1, 22);
- generateLinks('vol4-links', 'dxly', 'nrm', 1, 18);
- generateLinks('vol5-links', 'dxly', 'wl', 1, 40);
- generateLinks('vol6-links', 'dxly', 'cs', 1, 39);
- // --- 3. 倒计时逻辑 ---
- function updateCountdown(){
- const endTime = new Date('2033/11/26 00:00:00').getTime();
- const nowTime = new Date().getTime();
- const t = endTime - nowTime;
-
- if (t >= 0) {
- const d = Math.floor(t / 1000 / 60 / 60 / 24);
- const h = Math.floor(t / 1000 / 60 / 60 % 24);
- const m = Math.floor(t / 1000 / 60 % 60);
- const s = Math.floor(t / 1000 % 60);
-
- document.getElementById("t_d").innerText = d;
- document.getElementById("t_h").innerText = h.toString().padStart(2, '0');
- document.getElementById("t_m").innerText = m.toString().padStart(2, '0');
- document.getElementById("t_s").innerText = s.toString().padStart(2, '0');
- }
- }
- setInterval(updateCountdown, 1000);
- updateCountdown();
- // --- 4. 百度统计 ---
- var _hmt = _hmt || [];
- (function() {
- var hm = document.createElement("script");
- hm.src = "https://hm.baidu.com/hm.js?f38239c7d50e7f84a6ee8876da0304f7";
- var s = document.getElementsByTagName("script")[0];
- s.parentNode.insertBefore(hm, s);
- })();
- </script>
- </body>
- </html>
复制代码 |