欢迎来到本系列的第7篇。在之前的文章中,我们主要关注组件的内部逻辑。今天,我们将把视野扩大到整个网站的架构。
深色模式(Dark Mode)不仅仅是一个“开关”,它涉及到 CSS 架构设计的核心思想——变量化。同时,为了让网站“记住”用户的选择,我们将第一次接触浏览器的LocalStorage(本地存储)。
本篇我们将实现:
基于 CSS 变量 的主题系统。
一个平滑切换的“日/夜”开关。
使用 JS 读取和保存用户偏好。
第一部分:HTML 结构搭建 (语义化与开关)
HTML 结构相对简单。我们主要需要两部分:
页面内容:用于展示主题切换后的效果(如标题、卡片、文字)。
切换开关:一个用于触发切换的按钮。
<body>
<!-- 1. 顶部导航栏 -->
<nav class="navbar">
<div class="logo">MyBrand</div>
<!--
主题切换开关
aria-label 是为了无障碍访问
-->
<button id="theme-toggle" class="theme-btn" aria-label="切换主题">
<!-- 默认显示月亮图标 (代表点击进入深色模式) -->
<span class="icon">🌙</span>
<span class="text">深色模式</span>
</button>
</nav>
<!-- 2. 主要内容区域 -->
<main class="container">
<div class="hero-section">
<h1>欢迎来到我的博客</h1>
<p>这是一个演示 CSS 变量和深色模式切换的页面。</p>
</div>
<div class="card-grid">
<!-- 卡片 1 -->
<div class="card">
<h2>文章标题 1</h2>
<p>这是一些示例文本。在深色模式下,背景变黑,文字变白。</p>
<a href="#" class="link">阅读更多</a>
</div>
<!-- 卡片 2 -->
<div class="card">
<h2>文章标题 2</h2>
<p>CSS 变量让这一切变得非常简单且高效。</p>
<a href="#" class="link">阅读更多</a>
</div>
</div>
</main>
</body>
第二部分:CSS 样式 (CSS 变量的魔力)
这是本篇的核心。我们不再直接写死颜色(如 #ffffff 或 #000000),而是定义变量。
逻辑如下:
在 :root (默认状态) 下定义一套“浅色”变量。
在 [data-theme="dark"] 状态下重新定义这套变量为“深色”值。
在具体的 CSS 规则中,只使用 var(--variable-name)。
/* --- 1. 定义变量系统 --- */
/* 默认 (浅色) 主题 */
:root {
/* 背景色 */
--bg-body: #f4f7f6;
--bg-card: #ffffff;
--bg-nav: #ffffff;
/* 文本色 */
--text-primary: #333333;
--text-secondary: #666666;
/* 强调色 */
--accent-color: #007bff;
/* 边框与阴影 */
--border-color: #e1e4e8;
--shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* 深色主题 (通过 data-theme="dark" 属性激活) */
[data-theme="dark"] {
--bg-body: #1a1a1a;
--bg-card: #2d2d2d;
--bg-nav: #2d2d2d;
--text-primary: #ffffff;
--text-secondary: #b0b0b0;
--accent-color: #4dabf7; /* 深色模式下通常颜色要稍微亮一点 */
--border-color: #444444;
--shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* --- 2. 应用变量 --- */
body {
color: var(--text-primary);
font-family: -apple-system, sans-serif;
/* 核心:添加 transition 让颜色切换平滑过渡 */
transition: background-color 0.3s ease, color 0.3s ease;
margin: 0;
}
.navbar {
background-color: var(--bg-nav);
border-bottom: 1px solid var(--border-color);
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s ease, border-color 0.3s ease;
}
.card {
border: 1px solid var(--border-color);
box-shadow: var(--shadow);
padding: 25px;
border-radius: 8px;
transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card h2 { margin-top: 0; }
.card p { color: var(--text-secondary); }
.link { color: var(--accent-color); text-decoration: none; }
/* --- 开关按钮样式 --- */
.theme-btn {
background: transparent;
border: 1px solid var(--border-color);
color: var(--text-primary);
padding: 8px 16px;
border-radius: 20px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}
.theme-btn:hover {
}
/* 布局辅助 */
.container { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
第三部分:JS 交互逻辑 (LocalStorage)
JavaScript 的任务不仅仅是切换类名,更重要的是持久化用户的选择。
逻辑流程:
初始化:页面加载时,检查 localStorage。如果有保存的设置,立即应用。
切换:点击按钮时,切换 html 标签上的 data-theme 属性。
保存:将当前的状态('dark' 或 'light')写入 localStorage。
document.addEventListener('DOMContentLoaded', () => {
// 1. 获取 DOM 元素
const toggleBtn = document.getElementById('theme-toggle');
const toggleIcon = toggleBtn.querySelector('.icon');
const toggleText = toggleBtn.querySelector('.text');
// 我们将把 data-theme 属性放在 <html> 标签上
const htmlElement = document.documentElement;
// --- 辅助函数:更新按钮 UI ---
const updateButtonUI = (isDark) => {
if (isDark) {
toggleIcon.textContent = '☀';
toggleText.textContent = '浅色模式';
} else {
toggleIcon.textContent = '🌙';
toggleText.textContent = '深色模式';
}
};
// --- 2. 初始化:检查本地存储 ---
// 检查用户之前是否选过
const savedTheme = localStorage.getItem('myAppTheme');
// 如果之前保存了 'dark',则立即应用
if (savedTheme === 'dark') {
htmlElement.setAttribute('data-theme', 'dark');
updateButtonUI(true);
} else {
// 默认是浅色,无需操作 (或者也可以显式设置 'light')
updateButtonUI(false);
}
// --- 3. 绑定点击事件 ---
toggleBtn.addEventListener('click', () => {
// 检查当前是否是深色模式
const currentTheme = htmlElement.getAttribute('data-theme');
if (currentTheme === 'dark') {
// -> 切换为浅色
htmlElement.setAttribute('data-theme', 'light');
localStorage.setItem('myAppTheme', 'light'); // 保存到本地
updateButtonUI(false);
} else {
// -> 切换为深色
htmlElement.setAttribute('data-theme', 'dark');
localStorage.setItem('myAppTheme', 'dark'); // 保存到本地
updateButtonUI(true);
}
});
});
总结
恭喜!您构建了一个现代化的、具备记忆功能的深色模式系统。
我们学到了:
CSS 变量 (:root):这是现代 CSS 最强大的功能之一,它彻底改变了我们管理颜色的方式。
属性选择器 ([data-theme="..."]):利用 HTML 属性来驱动 CSS 样式的变化。
LocalStorage:如何使用简单的 setItem 和 getItem 让网页拥有“记忆”,极大地提升了用户体验。
这套逻辑是通用的,您可以将其应用到任何规模的 Web 项目中
https://gitee.com/bnfg/dfrged/blob/master/00564.md
https://gitee.com/bnfg/dfrged/blob/master/98545.md
https://gitee.com/bnfg/dfrged/blob/master/6667.md
https://gitee.com/bnfg/dfrged/blob/master/6663.md
https://gitee.com/bnfg/dfrged/blob/master/7789.md
https://gitee.com/bnfg/dfrged/blob/master/3365.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/568419.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/648290.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/237064.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/391735.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/812469.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/409567.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/756831.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/523876.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/594781.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/%20672395.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/830521.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/964813.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/187042.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/154892.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/709463.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/483271.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/170925.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/326498.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/245678.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/836519.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/792105.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/638452.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/917324.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/468173.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/539041.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/281654.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/713896.md
https://gitee.com/bnfg/dfrged/blob/master/0231.md
https://gitee.com/bnfg/dfrged/blob/master/45657.MD
https://gitee.com/bnfg/dfrged/blob/master/6587.md
https://gitee.com/bnfg/dfrged/blob/master/334.md
https://gitee.com/bnfg/dfrged/blob/master/7545.md
https://gitee.com/bnfg/dfrged/blob/master/7976.md
https://gitee.com/bnfg/dfrged/blob/master/0087.md
https://gitee.com/bnfg/dfrged/blob/master/2125.md
https://gitee.com/bnfg/dfrged/blob/master/700.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/634781.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/175942.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/718054.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/209543.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/874126.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/629387.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/392714.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/501863.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/143508.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/658279.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/%20285039.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/912607.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/764831.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/976142.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/820436.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/347589.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/463021.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/%20159784.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/632480.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/814957.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/597632.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/471963.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/306829.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/789154.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/193648.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/258740.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/619354.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/843027.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/618349.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/234167.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/891423.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/760985.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/537816.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/618349.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/581624.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/105629.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/982471.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/469725.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/257346.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/314852.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/803691.md
https://weibo.com/ttarticle/p/show?id=2309405298430527537360
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430527537360
https://weibo.com/ttarticle/p/show?id=2309405298430632394922
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430632394922
https://weibo.com/ttarticle/p/show?id=2309405298430670143791
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430670143791
https://weibo.com/ttarticle/p/show?id=2309405298430708154461
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430708154461
https://weibo.com/ttarticle/p/show?id=2309405298430779457604
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430779457604
https://weibo.com/ttarticle/p/show?id=2309405298430880121032
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430880121032
https://weibo.com/ttarticle/p/show?id=2309405298430946967655
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298430946967655
https://weibo.com/ttarticle/p/show?id=2309405298431043436683
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431043436683
https://weibo.com/ttarticle/p/show?id=2309405298431119196284
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431119196284
https://weibo.com/ttarticle/p/show?id=2309405298431211208862
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431211208862
https://weibo.com/ttarticle/p/show?id=2309405298431291162629
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431291162629
https://weibo.com/ttarticle/p/show?id=2309405298431374786684
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431374786684
https://weibo.com/ttarticle/p/show?id=2309405298431395758150
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431395758150
https://weibo.com/ttarticle/p/show?id=2309405298431462866963
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431462866963
https://weibo.com/ttarticle/p/show?id=2309405298431467061343
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431467061343
https://weibo.com/ttarticle/p/show?id=2309405298431555141767
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431555141767
https://weibo.com/ttarticle/p/show?id=2309405298431580307548
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431580307548
https://weibo.com/ttarticle/p/show?id=2309405298431643222077
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431643222077
https://weibo.com/ttarticle/p/show?id=2309405298431706136946
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431706136946
https://weibo.com/ttarticle/p/show?id=2309405298431806800092
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431806800092
https://weibo.com/ttarticle/p/show?id=2309405298431823839242
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431823839242
https://weibo.com/ttarticle/p/show?id=2309405298431874170968
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431874170968
https://weibo.com/ttarticle/p/show?id=2309405298431974572089
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431974572089
https://weibo.com/ttarticle/p/show?id=2309405298431987417178
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298431987417178
https://weibo.com/ttarticle/p/show?id=2309405298432058720401
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432058720401
https://weibo.com/ttarticle/p/show?id=2309405298432079691920
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432079691920
https://weibo.com/ttarticle/p/show?id=2309405298432133955770
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432133955770
https://weibo.com/ttarticle/p/show?id=2309405298432155189328
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432155189328
https://weibo.com/ttarticle/p/show?id=2309405298432251658273
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432251658273
https://weibo.com/ttarticle/p/show?id=2309405298432301727843
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432301727843
https://weibo.com/ttarticle/p/show?id=2309405298432318505126
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432318505126
https://weibo.com/ttarticle/p/show?id=2309405298432406585481
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432406585481
https://weibo.com/ttarticle/p/show?id=2309405298432498860323
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432498860323
https://weibo.com/ttarticle/p/show?id=2309405298432532676731
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432532676731
https://weibo.com/ttarticle/p/show?id=2309405298432532414610
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432532414610
https://weibo.com/ttarticle/p/show?id=2309405298432700186827
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432700186827
https://weibo.com/ttarticle/p/show?id=2309405298432775946372
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432775946372
https://weibo.com/ttarticle/p/show?id=2309405298432901775384
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432901775384
https://weibo.com/ttarticle/p/show?id=2309405298432981205137
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432981205137
https://weibo.com/ttarticle/p/show?id=2309405298432998244393
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298432998244393
https://weibo.com/ttarticle/p/show?id=2309405298433065091164
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433065091164
https://weibo.com/ttarticle/p/show?id=2309405298433144782889
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433144782889
https://weibo.com/ttarticle/p/show?id=2309405298433312817322
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433312817322
https://weibo.com/ttarticle/p/show?id=2309405298433358954507
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433358954507
https://weibo.com/ttarticle/p/show?id=2309405298433480589336
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433480589336
https://weibo.com/ttarticle/p/show?id=2309405298433488715964
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433488715964
https://weibo.com/ttarticle/p/show?id=2309405298433589379264
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433589379264
https://weibo.com/ttarticle/p/show?id=2309405298433660682359
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433660682359
https://weibo.com/ttarticle/p/show?id=2309405298433727791250
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433727791250
https://weibo.com/ttarticle/p/show?id=2309405298433765539933
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433765539933
https://weibo.com/ttarticle/p/show?id=2309405298433862008883
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433862008883
https://weibo.com/ttarticle/p/show?id=2309405298433895563498
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298433895563498
https://weibo.com/ttarticle/p/show?id=2309405298434000420910
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434000420910
https://weibo.com/ttarticle/p/show?id=2309405298434042363944
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434042363944
https://weibo.com/ttarticle/p/show?id=2309405298434168193235
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434168193235
https://weibo.com/ttarticle/p/show?id=2309405298434264924182
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434264924182
https://weibo.com/ttarticle/p/show?id=2309405298434331771006
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434331771006
https://weibo.com/ttarticle/p/show?id=2309405298434353004647
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434353004647
https://weibo.com/ttarticle/p/show?id=2309405298434512126125
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434512126125
https://weibo.com/ttarticle/p/show?id=2309405298434554331186
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434554331186
https://weibo.com/ttarticle/p/show?id=2309405298434684092751
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434684092751
https://weibo.com/ttarticle/p/show?id=2309405298434717909125
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434717909125
https://weibo.com/ttarticle/p/show?id=2309405298434730491909
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434730491909
https://weibo.com/ttarticle/p/show?id=2309405298434944139450
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434944139450
https://weibo.com/ttarticle/p/show?id=2309405298434956722186
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298434956722186
https://weibo.com/ttarticle/p/show?id=2309405298435082813565
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435082813565
https://weibo.com/ttarticle/p/show?id=2309405298435133145092
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435133145092
https://weibo.com/ttarticle/p/show?id=2309405298435220963551
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435220963551
https://weibo.com/ttarticle/p/show?id=2309405298435250585779
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435250585779
https://weibo.com/ttarticle/p/show?id=2309405298435518759127
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435518759127
https://weibo.com/ttarticle/p/show?id=2309405298435673948283
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435673948283
https://weibo.com/ttarticle/p/show?id=2309405298435694919730
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435694919730
https://weibo.com/ttarticle/p/show?id=2309405298435732930834
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435732930834
https://weibo.com/ttarticle/p/show?id=2309405298435896508701
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435896508701
https://weibo.com/ttarticle/p/show?id=2309405298435942383879
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298435942383879
https://weibo.com/ttarticle/p/show?id=2309405298436055630089
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436055630089
https://weibo.com/ttarticle/p/show?id=2309405298436080795831
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436080795831
https://weibo.com/ttarticle/p/show?id=2309405298436273733636
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436273733636
https://weibo.com/ttarticle/p/show?id=2309405298436320133195
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436320133195
https://weibo.com/ttarticle/p/show?id=2309405298436387242054
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436387242054
https://weibo.com/ttarticle/p/show?id=2309405298436475060412
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436475060412
https://weibo.com/ttarticle/p/show?id=2309405298436496293898
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436496293898
https://weibo.com/ttarticle/p/show?id=2309405298436718330157
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436718330157
https://weibo.com/ttarticle/p/show?id=2309405298436894490674
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298436894490674
https://weibo.com/ttarticle/p/show?id=2309405298437045485639
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437045485639
https://weibo.com/ttarticle/p/show?id=2309405298437049680045
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437049680045
https://weibo.com/ttarticle/p/show?id=2309405298437221646506
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437221646506
https://weibo.com/ttarticle/p/show?id=2309405298437301600457
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437301600457
https://weibo.com/ttarticle/p/show?id=2309405298437376835775
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437376835775
https://weibo.com/ttarticle/p/show?id=2309405298437506859310
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437506859310
https://weibo.com/ttarticle/p/show?id=2309405298437670699149
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437670699149
https://weibo.com/ttarticle/p/show?id=2309405298437854986404
https://weibo.com/ttarticle/p/show?comment=1&id=2309405298437854986404
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/796038.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/817563.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/253790.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/674189.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/496328.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/132946.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/785124.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/360985.md
https://gitee.com/fghgetu/bvgte-asdfe/blob/master/941727.md
https://gitee.com/bnfg/dfrged/blob/master/1145.md
https://gitee.com/bnfg/dfrged/blob/master/6969.md
https://gitee.com/bnfg/dfrged/blob/master/0003.md
https://gitee.com/bnfg/dfrged/blob/master/0078.md
https://gitee.com/bnfg/dfrged/blob/master/656.md
https://gitee.com/bnfg/dfrged/blob/master/3030.md
https://gitee.com/bnfg/dfrged/blob/master/3130.md
https://gitee.com/bnfg/dfrged/blob/master/6465.md
https://gitee.com/bnfg/dfrged/blob/master/6453.md
https://gitee.com/bnfg/dfrged/blob/master/879.md
https://gitee.com/bnfg/dfrged/blob/master/5545.md
https://gitee.com/bnfg/dfrged/blob/master/6023.md
https://gitee.com/bnfg/dfrged/blob/master/300.md
https://gitee.com/bnfg/dfrged/blob/master/7783.md
https://gitee.com/bnfg/dfrged/blob/master/6654.md
https://gitee.com/bnfg/dfrged/blob/master/2356.md
https://gitee.com/bnfg/dfrged/blob/master/366.md
https://gitee.com/bnfg/dfrged/blob/master/11023.md
https://gitee.com/bnfg/dfrged/blob/master/5064.md
https://gitee.com/bnfg/dfrged/blob/master/3232.md
https://gitee.com/bnfg/dfrged/blob/master/0213.md
https://gitee.com/bnfg/dfrged/blob/master/32322.md
https://gitee.com/bnfg/dfrged/blob/master/0012.md
https://gitee.com/bnfg/dfrged/blob/master/3132.md
https://gitee.com/bnfg/dfrged/blob/master/00312.md
https://gitee.com/bnfg/dfrged/blob/master/2151.md
https://gitee.com/bnfg/dfrged/blob/master/00102.md
https://gitee.com/bnfg/dfrged/blob/master/5151.md
https://gitee.com/bnfg/dfrged/blob/master/1542.md
https://gitee.com/bnfg/dfrged/blob/master/61613.md
https://gitee.com/bnfg/dfrged/blob/master/4162.md
https://gitee.com/bnfg/dfrged/blob/master/0023.md
https://gitee.com/bnfg/dfrged/blob/master/8218.md
