<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>BH6PEI</title><link>https://www.bh6pei.cn/</link><description>Good Luck To You!</description><item><title>临时保存</title><link>https://www.bh6pei.cn/?id=15</link><description>&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;你说得完全没错！✅ 宝塔面板下 TP5 框架已安装完成、首页能正常显示欢迎词，说明基础环境 100% 就绪，不用再纠结安装相关的问题，现在可以直接启动第二步：开发你专属的日报生成 + 打印项目，我把核心步骤拆成「极简可落地」的 4 步，全程适配你的宝塔环境，每一步都能直接操作：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;核心目标：把 “固定格式日报生成 + 打印” 功能落地到 TP5 项目中&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;第一步：创建日报功能的核心控制器（DailyReport.php）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;控制器是功能的 “大脑”，负责处理 “新增日报、查看列表、打印日报” 的逻辑：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;登录宝塔面板 → 「文件」→ 找到路径：/www/wwwroot/dgcms/application/index/controller；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;右键controller文件夹 → 「新建文件」，文件名填DailyReport.php（首字母 D 必须大写）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;打开文件，粘贴以下代码（已适配你的dgcms数据表）：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;php&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;运行&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;lt;?phpnamespace app\index\controller;use think\Controller;use app\index\model\DailyReport as ReportModel;class DailyReport extends Controller{&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 日报列表页（查看所有生成的日报）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; public function index()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $list = ReportModel::order(&amp;#39;report_date desc, create_time desc&amp;#39;)-&amp;gt;select();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;assign(&amp;#39;list&amp;#39;, $list);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $this-&amp;gt;fetch();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 新增日报（生成固定格式内容）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; public function add()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (request()-&amp;gt;isPost()) {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 获取表单提交的数据&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $data = input(&amp;#39;post.&amp;#39;);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 极简验证：核心字段不能为空&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (empty($data[&amp;#39;user_name&amp;#39;]) || empty($data[&amp;#39;dept&amp;#39;]) || empty($data[&amp;#39;report_date&amp;#39;]) || empty($data[&amp;#39;today_work&amp;#39;])) {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;error(&amp;#39;填写人、部门、日期、今日完成不能为空！&amp;#39;);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 保存数据到dgcms表&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $report = new ReportModel();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $result = $report-&amp;gt;allowField(true)-&amp;gt;save($data);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ($result) {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;success(&amp;#39;日报生成成功！&amp;#39;, url(&amp;#39;index&amp;#39;));&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;error(&amp;#39;日报生成失败，请重试！&amp;#39;);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // 默认填充今日日期&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;assign(&amp;#39;today&amp;#39;, date(&amp;#39;Y-m-d&amp;#39;));&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $this-&amp;gt;fetch();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 打印专用页面（固定格式，适配打印）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; public function print($id)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $report = ReportModel::find($id);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (!$report) {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;error(&amp;#39;日报不存在！&amp;#39;);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;assign(&amp;#39;report&amp;#39;, $report);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $this-&amp;gt;fetch();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; }}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;点击「保存」，控制器就创建好了。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;第二步：创建日报数据模型（DailyReport.php）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;模型负责和数据库（dgcms 表）交互，处理数据的读写：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;宝塔「文件」→ 路径：/www/wwwroot/dgcms/application/index/model（没有model文件夹就右键新建）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;右键model文件夹 → 「新建文件」，文件名DailyReport.php（首字母 D 大写）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;粘贴以下代码（关联你的dgcms数据表）：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;php&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;运行&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;lt;?phpnamespace app\index\model;use think\Model;class DailyReport extends Model{&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 关联你创建的dgcms数据表（核心适配）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; protected $table = &amp;#39;dgcms&amp;#39;;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 关闭自动更新时间，只保留创建时间&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; protected $updateTime = false;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 自动填充创建时间&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; protected $auto = [&amp;#39;create_time&amp;#39;];&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 自动生成创建时间（时间戳）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; protected function setCreateTimeAttr()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return time();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; // 格式化日期显示（比如2026-03-10 → 2026年03月10日）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; protected function getReportDateAttr($value)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return date(&amp;#39;Y年m月d日&amp;#39;, strtotime($value));&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; }}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;点击「保存」，模型就配置完成。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;第三步：创建视图页面（新增 / 列表 / 打印，固定格式）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;视图是 “页面界面”，用户看到的表单、列表、打印页都在这里：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;宝塔「文件」→ 路径：/www/wwwroot/dgcms/application/index/view；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;右键view文件夹 → 「新建文件夹」，文件夹名daily_report（小写，和控制器名对应）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;在daily_report文件夹里创建 3 个文件，分别粘贴对应代码：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;① 新增日报页面（add.html）—— 填写日报的表单&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;新建文件add.html，粘贴：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;html&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;预览&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta charset=&amp;quot;UTF-8&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;生成日报 - 我的极简日报系统&amp;lt;/title&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;style&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .form-box {width: 600px; margin: 50px auto; padding: 20px; border: 1px solid #ccc;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .form-item {margin-bottom: 15px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .form-item label {display: inline-block; width: 100px; text-align: right; margin-right: 10px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .form-item input, .form-item select {width: 300px; padding: 5px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .form-item textarea {width: 400px; height: 100px; padding: 5px; vertical-align: top;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .btn {padding: 8px 20px; background: #009688; color: #fff; border: none; cursor: pointer;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/style&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;h2 style=&amp;quot;text-align: center; margin-bottom: 20px;&amp;quot;&amp;gt;固定格式日报生成&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form action=&amp;quot;{:url(&amp;#39;add&amp;#39;)}&amp;quot; method=&amp;quot;post&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;填写人：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;user_name&amp;quot; placeholder=&amp;quot;请输入姓名&amp;quot; required&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;部门：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;dept&amp;quot; placeholder=&amp;quot;请输入部门&amp;quot; required&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;日报日期：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;date&amp;quot; name=&amp;quot;report_date&amp;quot; value=&amp;quot;{$today}&amp;quot; required&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;今日完成：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;textarea name=&amp;quot;today_work&amp;quot; placeholder=&amp;quot;请填写今日完成的工作（固定格式）&amp;quot; required&amp;gt;&amp;lt;/textarea&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;明日计划：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;textarea name=&amp;quot;tomorrow_plan&amp;quot; placeholder=&amp;quot;请填写明日工作计划（固定格式）&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;label&amp;gt;备注：&amp;lt;/label&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;remark&amp;quot; placeholder=&amp;quot;其他说明&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button type=&amp;quot;submit&amp;quot;&amp;gt;生成日报&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/form&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;② 日报列表页面（index.html）—— 查看所有日报，可打印&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;新建文件index.html，粘贴：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;html&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;预览&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta charset=&amp;quot;UTF-8&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;日报列表 - 我的极简日报系统&amp;lt;/title&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;style&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .container {width: 90%; margin: 50px auto;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .btn-add {display: inline-block; padding: 8px 20px; background: #009688; color: #fff; text-decoration: none; margin-bottom: 20px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; table {width: 100%; border-collapse: collapse;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; th, td {border: 1px solid #ccc; padding: 10px; text-align: center;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; th {background: #f5f5f5;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .btn-print {color: #009688; text-decoration: none;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/style&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;{:url(&amp;#39;add&amp;#39;)}&amp;quot;&amp;gt;生成新日报&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;table&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th&amp;gt;ID&amp;lt;/th&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th&amp;gt;填写人&amp;lt;/th&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th&amp;gt;部门&amp;lt;/th&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th&amp;gt;日报日期&amp;lt;/th&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th&amp;gt;操作&amp;lt;/th&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {volist name=&amp;quot;list&amp;quot; id=&amp;quot;vo&amp;quot;}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;{$vo.id}&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;{$vo.user_name}&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;{$vo.dept}&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;{$vo.report_date}&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;{:url(&amp;#39;print&amp;#39;, [&amp;#39;id&amp;#39;=&amp;gt;$vo.id])}&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;打印日报&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {/volist}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/table&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;③ 打印专用页面（print.html）—— 固定格式，适配打印机&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;新建文件print.html，粘贴：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;html&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;预览&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta charset=&amp;quot;UTF-8&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;日报打印 - {$report.user_name} {$report.report_date}&amp;lt;/title&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;style&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @media print {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; body {margin: 0; padding: 0;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-btn {display: none;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-box {width: 100%; max-width: 800px; margin: 0 auto; padding: 20px; font-family: &amp;quot;微软雅黑&amp;quot;; font-size: 14px; line-height: 1.8;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-title {text-align: center; font-size: 18px; font-weight: bold; margin-bottom: 20px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-item {margin-bottom: 10px;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-label {display: inline-block; width: 80px; font-weight: bold;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-content {display: inline-block; vertical-align: top; width: calc(100% - 90px);}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .print-line {border-bottom: 1px solid #000; margin: 15px 0;}&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/style&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div style=&amp;quot;text-align: right; margin-bottom: 10px;&amp;quot;&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button onclick=&amp;quot;window.print()&amp;quot; style=&amp;quot;padding: 8px 20px; background: #009688; color: #fff; border: none; cursor: pointer;&amp;quot;&amp;gt;打印日报&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;工作日报&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;填写人：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.user_name}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;部门：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.dept}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;日期：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.report_date}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;今日完成：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.today_work}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;明日计划：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.tomorrow_plan|default=&amp;#39;无&amp;#39;}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;备注：&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span&amp;gt;{$report.remark|default=&amp;#39;无&amp;#39;}&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;三个视图文件都保存后，视图层就完成了。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;第四步：测试访问，体验你的日报系统！&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;现在所有代码都已落地，直接访问以下地址就能用：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;日报列表页：http://172.16.0.51/index/daily_report/index（能看到 “生成新日报” 按钮）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;新增日报页：点击 “生成新日报”，填写姓名、部门、今日完成等信息，提交后会提示 “生成成功”；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;打印日报：列表页点击 “打印日报”，打开新页面后点击 “打印日报” 按钮，就能调用打印机打印固定格式的日报。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;关键注意事项（避免小坑）&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;文件名规范：控制器 / 模型的DailyReport.php首字母必须大写，视图文件夹daily_report必须小写；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;数据库验证：如果提示 “数据库连接失败”，检查application/database.php里的 MySQL 密码是否正确；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;缓存问题：改代码后没生效，就删除runtime目录下的缓存文件（宝塔里右键删除即可）。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;总结&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;现在你已完成 “从 0 到 1” 的核心步骤：控制器（逻辑）+ 模型（数据）+ 视图（界面）；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;访问对应地址就能体验 “固定格式日报生成 + 打印” 的完整功能，完全适配你的宝塔 + TP5 环境；&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;后续想改样式（比如打印页的字体、排版），直接改视图文件里的 CSS 即可，不用动逻辑代码。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;现在快去访问http://172.16.0.51/index/daily_report/index，试试生成你的第一份日报吧！&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-wrap: nowrap&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 10 Mar 2026 17:07:49 +0800</pubDate></item><item><title>银杏树下的四季课</title><link>https://www.bh6pei.cn/?id=14</link><description>&lt;p&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/03/202603031772528547326853.png&quot; title=&quot;图片1.png&quot; alt=&quot;图片1.png&quot;/&gt;&lt;span style=&quot;;font-family:Calibri;font-size:14px&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;老银杏树长在村口百年了，树洞里住着小银杏果阿银。春分那天，阿银揉着眼睛钻出树洞，看见枝头的芽尖正顶着晨露舒展，嫩得像裹了层绿纱。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;芽尖姐姐，你们怎么知道现在该醒啦？&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银踮着脚问。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;芽尖晃了晃新叶：&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;你看叶脉上的光纹呀。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银凑过去，果然见叶片上有细细的金纹，正随着朝阳轻轻闪烁 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;—— &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;那是老树藏在叶里的 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;光钟&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;，冬天日照短，光纹蜷成小圈，像睡着的萤火虫；如今日照一天天变长，光纹慢慢展开，就把 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;该生长&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;的消息传给了每一个芽尖。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;夏天的风裹着热浪来，阿银趴在树洞里看叶片们努力光合作用。老树忽然叹了口气：&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;要开始准备啦。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银不解，明明阳光正足，怎么就要 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;准备&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;？直到秋分过后，他发现叶面上的光纹开始褪色，原本翠绿的叶子慢慢染成金黄。更奇怪的是，老树的树皮下渗出透明的 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;休眠露&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;，顺着枝干流到叶柄处，在那里聚成小小的 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;离层扣&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;叶子要走了吗？&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银有点难过。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;老树轻轻摇了摇枝：&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;不是走哦。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;他让一片黄叶飘到阿银身边，&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;你看叶子里的养分，正顺着叶脉往我枝干里流呢。光纹告诉我们日照要短了，休眠露帮着把叶子和枝丫轻轻分开，这样养分就能收回来，藏在树根里 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;—— &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;就像你冬天要把零食存进小盒子，不是放弃，是为了明年更有力气发芽呀。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银看着金黄的叶子一片片落在树根旁，像给大地盖了层暖毯，忽然懂了：原来&lt;/span&gt; &lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;放下&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;不是失去，是把珍贵的东西好好藏起来，等春天再用。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;冬天的雪裹住了银杏树，阿银缩在树洞里打哆嗦，却看见老树的枝芽上结着薄薄的冰壳，冰壳里隐约有红光在跳。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;那是&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;‘&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;寒玉考验&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;’&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;” &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;老树的声音从雪层里传出来，&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;我的芽尖里藏着&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;‘&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;生长露&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;’&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;，但要等雪水的寒气冻一冻，才能把&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;‘&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;睡懒觉&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;’&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;的芽尖叫醒。要是冬天不冷，生长露就醒不过来，明年就长不出新叶啦。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;阿银摸着树洞外的冰壳，忽然想起去年冬天村里的小孩说&lt;/span&gt; &lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;要经点冻，才长得壮&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;，原来植物也懂这个道理 &lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;—— &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;没有一点磨砺，哪来向上的力气？&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;等第一缕春风吹化雪层时，阿银惊喜地发现，枝芽上的冰壳裂了，嫩绿色的芽尖顶着雪水钻了出来。光纹在新叶上重新闪起金芒，树根里藏了一冬天的养分顺着枝干往上跑，给每一片新叶送去能量。阿银趴在树洞口，看着满树的新绿像小扇子一样展开，忽然明白：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;植物的智慧，从来不是急着长大，而是顺着季节的节奏，该藏时沉下心，该长时不犹豫。就像光纹会跟着日照变，休眠露会帮着收养分，寒玉会叫醒芽尖&lt;/span&gt; &lt;span style=&quot;font-family:Arial&quot;&gt;—— &lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;顺应变化，守住根本，每一个平凡的四季，都藏着向上生长的力量。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 2em;&quot;&gt;&lt;span style=&quot;;font-family:Arial;font-size:15px&quot;&gt;&lt;span style=&quot;font-family:等线&quot;&gt;后来阿银也长成了小小的银杏树，每当有人问他&lt;/span&gt; &lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;怎么知道什么时候发芽&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;，他就会指着叶面上的光纹笑：&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:等线&quot;&gt;你看，季节会告诉我们答案呀。&lt;/span&gt;&lt;span style=&quot;font-family:Arial&quot;&gt;”&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;</description><pubDate>Tue, 03 Mar 2026 17:01:09 +0800</pubDate></item><item><title>招笑对话</title><link>https://www.bh6pei.cn/?id=13</link><description>&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987304251667.jpg&quot; style=&quot;&quot; title=&quot;1.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987304172448.jpg&quot; style=&quot;&quot; title=&quot;2.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987305830445.jpg&quot; style=&quot;&quot; title=&quot;3.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987305174190.jpg&quot; style=&quot;&quot; title=&quot;4.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987306158245.jpg&quot; style=&quot;&quot; title=&quot;5.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987306235469.jpg&quot; style=&quot;&quot; title=&quot;6.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987306591558.jpg&quot; style=&quot;&quot; title=&quot;7.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987307448935.jpg&quot; style=&quot;&quot; title=&quot;8.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987307646388.jpg&quot; style=&quot;&quot; title=&quot;9.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602251771987307904825.jpg&quot; style=&quot;&quot; title=&quot;10.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Feb 2026 10:40:41 +0800</pubDate></item><item><title>新春快乐</title><link>https://www.bh6pei.cn/?id=12</link><description>&lt;h1 style=&quot;box-sizing: border-box; font-size: 2rem; margin: 0px 0px 0.5em; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; text-wrap: wrap;&quot;&gt;新春快乐，马年大吉&lt;/h1&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602141771028106585606.png&quot; title=&quot;生成马年大吉海报.png&quot; alt=&quot;生成马年大吉海报.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602141771027964905024.jpg&quot; style=&quot;&quot; title=&quot;下载.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/02/202602141771027966810110.jpg&quot; style=&quot;&quot; title=&quot;中式简约红金传统水墨水彩马年春节放假通知海报 拷贝.jpg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 14 Feb 2026 08:11:45 +0800</pubDate></item><item><title>DeepSeek招聘搜索算法研究员，剑指新一代通用搜索引擎</title><link>https://www.bh6pei.cn/?id=11</link><description>&lt;section nodeleaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-wrap: wrap;background-color: rgb(255, 255, 255);text-align: center;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;img data-src=&quot;https://mmbiz.qpic.cn/sz_mmbiz_png/lInsMlpk5sRePwY4Ee9EicEz68AoLZXmqI8IRkBZq2PuYQvFvxSL0V2784YPKgzrWibLEsWOqBHe7AiconCibIKk5g/640?wx_fmt=png&amp;amp;from=appmsg#imgIndex=0&quot; class=&quot;rich_pages wxw-img&quot; data-ratio=&quot;0.49166666666666664&quot; data-s=&quot;300,640&quot; data-type=&quot;png&quot; data-w=&quot;1080&quot; type=&quot;block&quot; data-imgfileid=&quot;501918708&quot; data-aistatus=&quot;1&quot; data-original-style=&quot;null&quot; data-index=&quot;2&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/01/202601291769672850409473.webp&quot; _width=&quot;677px&quot; alt=&quot;640.webp&quot; data-report-img-idx=&quot;1&quot; data-fail=&quot;0&quot; style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;vertical-align: bottom;height: auto !important;visibility: visible !important;width: 661px !important&quot; title=&quot;640.webp&quot;/&gt;&lt;/section&gt;&lt;p data-pm-slice=&quot;0 0 []&quot; style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;visibility: visible&quot;&gt;1月29日，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;visibility: visible&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;visibility: visible&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;visibility: visible&quot;&gt;官方网站招聘页面显示，近期深度求索发布多个招聘岗位，其中包括&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;visibility: visible&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold;visibility: visible&quot;&gt;“搜索算法研究员”。而从岗位职责推测，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;visibility: visible&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold;visibility: visible&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold;visibility: visible&quot;&gt;可能正在研发一款具备多语言、多模态能力，且避免&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;visibility: visible&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold;visibility: visible&quot;&gt;AI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold;visibility: visible&quot;&gt;幻觉的新一代通用搜索引擎。&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;section nodeleaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-wrap: wrap;background-color: rgb(255, 255, 255);text-align: center;visibility: visible;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;img data-src=&quot;https://mmbiz.qpic.cn/sz_mmbiz_png/lInsMlpk5sRePwY4Ee9EicEz68AoLZXmqavVWsgBPK7gXkkPTPgLJyYVJ4SALuFed0eBFUibj3cbxibQGFTg7aQuA/640?wx_fmt=png&amp;amp;from=appmsg#imgIndex=1&quot; class=&quot;rich_pages wxw-img&quot; data-ratio=&quot;0.49537037037037035&quot; data-s=&quot;300,640&quot; data-type=&quot;png&quot; data-w=&quot;1080&quot; type=&quot;block&quot; data-imgfileid=&quot;501918706&quot; data-aistatus=&quot;1&quot; data-original-style=&quot;null&quot; data-index=&quot;3&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/01/202601291769672862801204.webp&quot; _width=&quot;677px&quot; alt=&quot;640 (1).webp&quot; data-report-img-idx=&quot;0&quot; data-fail=&quot;0&quot; style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;vertical-align: bottom;height: auto !important;visibility: visible !important;width: 661px !important&quot; title=&quot;640 (1).webp&quot;/&gt;&lt;/section&gt;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;color: #007AAA;font-weight: bold&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;color: #007AAA;font-weight: bold&quot;&gt;对于“搜索算法研究员”的岗位职责描述如下：&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;1.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;设计面向&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;AGI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;的新一代通用搜索引擎，打破传统搜索界限，探索&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;LLM&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;与搜索引擎的深度融合；&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;2.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;构建多语言、多模态的检索系统，解决长尾知识与内容可信问题；&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;3.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;紧跟&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;LLM/IR&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;领域前沿技术，负责&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;LLM&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;在搜索场景下的规模化落地。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;根据岗位职责推测，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;不局限于现有聊天窗口的“联网搜索”按钮，而是意图打造像&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;Perplexity&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;那样的&lt;/span&gt;&lt;/span&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;原生&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;AI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;搜索产品&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;。而一旦做成，就是对传统搜索巨头和新兴&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;AI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;搜索的双重竞争，或者说，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;可能已经悄然加入“超级应用入口”竞争。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;同时，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;在招聘中特别强调“解决长尾知识与内容可信问题”。&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;这是目前&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;AI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;搜索面临的最大诟病——&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;AI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;幻觉。&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;显然意识，如果只做&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;chat&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;，它可以胡扯；但如果要做“搜索引擎”，准确性是生死线。这也意味着&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;的目标用户群将从“写代码、写文案的人”拓展到“查资料、做研究、看新闻的人”，直接切入&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;Google&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;等搜索引擎巨头的核心腹地。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;clear: both;min-height: 1em;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;strong style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;font-weight: normal;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px;font-weight: bold&quot;&gt;另外，招聘还提到“构建多语言、多模态的检索系统”。&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;结合&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;在海外开发者社区的高口碑，他们很可能想利用这一优势，做一个能打破语言障碍的全球知识引擎。而“多模态”则意味着未来的&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;搜索功能可能具备多模态特性，能够处理从文本、图像，甚至音视频等各种形式的输入，以满足用户的信息检索需求。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;section style=&quot;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin: 0px 8px 24px;padding: 0px;outline: 0px;max-width: 100%;color: rgba(0, 0, 0, 0.9);font-family: &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;text-wrap: wrap;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;据悉，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;近日发布了最新开源模型&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek-OCR 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;，其核心定位正是处理静态图像，其同步发布的论文《&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;DeepSeek-OCR 2: Visual Causal Flow&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span leaf=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;font-family: mp-quote, &amp;#39;PingFang SC&amp;#39;, system-ui, -apple-system, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;line-height: 1.6;letter-spacing: 0.034em;box-sizing: border-box !important;overflow-wrap: break-word !important&quot;&gt;&lt;span textstyle=&quot;&quot; style=&quot;-webkit-tap-highlight-color: ;padding: 0px;outline: 0px;max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;font-size: 15px;letter-spacing: 0.5px&quot;&gt;》核心成果，就是使模型具备人类一样的图像内容理解能力，从而显著提升模型在表格、文档和公式等复杂结构场景中的识别与理解效果。而该技术可能带来的效率提升和成本降低，同样适用于多模态搜索场景。&lt;/span&gt;&lt;/span&gt;&lt;/section&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 29 Jan 2026 15:43:08 +0800</pubDate></item><item><title>内网显示地球图标但功能正常：原因与解决方案</title><link>https://www.bh6pei.cn/?id=10</link><description>&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;&lt;title&gt;内网显示地球图标但功能正常：原因与解决方案&lt;/title&gt;&lt;style&gt;* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 2px solid #2c5282;
        }
        h1 {
            color: #1a365d;
            font-size: 28px;
            margin-bottom: 10px;
        }
        .subtitle {
            color: #4a5568;
            font-size: 16px;
        }
        section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 25px;
            padding: 20px;
        }
        h2 {
            color: #2c5282;
            border-left: 4px solid #3182ce;
            padding-left: 10px;
            margin: 15px 0 15px -4px;
            font-size: 22px;
        }
        h3 {
            color: #2b6cb0;
            margin: 15px 0 10px;
            font-size: 18px;
        }
        p {
            margin: 10px 0;
            text-align: justify;
        }
        ul {
            padding-left: 25px;
            margin: 15px 0;
        }
        li {
            margin-bottom: 8px;
        }
        .important {
            background-color: #fee2e2;
            border-left: 4px solid #ef4444;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .core-reasons {
            background-color: #dbeafe;
            padding: 15px;
            border-radius: 6px;
            margin: 15px 0;
        }
        .solution {
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 3px solid #cbd5e0;
        }
        .solution-title {
            font-weight: bold;
            color: #2b6cb0;
            margin-bottom: 8px;
        }
        .solution-steps {
            padding-left: 25px;
        }
        .recommend {
            font-weight: bold;
            color: #2b6cb0;
        }
        .warning {
            color: #e53e3e;
            font-weight: bold;
        }
        .summary {
            background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .suggestion {
            font-style: italic;
            margin-top: 15px;
            padding: 10px 15px;
            background-color: #ebf8ff;
            border-radius: 4px;
        }
        code {
            background-color: #f0f9ff;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: Consolas, Monaco, monospace;
            color: #2b6cb0;
        }
        footer {
            text-align: center;
            margin-top: 30px;
            color: #718096;
            font-size: 14px;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            section {
                padding: 15px;
            }
        }&lt;/style&gt;&lt;header&gt;&lt;h1&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2026/01/202601061767670456130750.jpg&quot; title=&quot;u=506117083,1766349487&amp;amp;fm=193.jpg&quot; alt=&quot;u=506117083,1766349487&amp;amp;fm=193.jpg&quot;/&gt;&lt;/h1&gt;&lt;div class=&quot;subtitle&quot;&gt;Windows 系统网络状态显示问题解析&lt;/div&gt;&lt;/header&gt;&lt;section&gt;&lt;h2&gt;一、为什么会出现这种现象？&lt;/h2&gt;&lt;p class=&quot;warning&quot;&gt;这是 Windows 系统的正常行为，而非故障！&lt;/p&gt;&lt;p&gt;内网与互联网是物理隔离的，这是保障信息安全的基本要求。Windows 系统通过&lt;strong&gt;网络连接状态指示器 (NCSI)&lt;/strong&gt;检测网络是否可访问公共互联网，当无法连接到微软的验证服务器(如&lt;code&gt;http://www.msftncsi.com/ncsi.txt&lt;/code&gt;)时，就会显示地球图标并提示&amp;quot;已连接，无 Internet&amp;quot;。&lt;/p&gt;&lt;h3&gt;核心原因：&lt;/h3&gt;&lt;div class=&quot;core-reasons&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;Windows 的 NCSI 检测机制需要连接公网服务器验证网络状态&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;内网物理隔离，无法访问互联网验证服务器&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;系统误认为&amp;quot;无法连接 Internet&amp;quot;，但这不影响内网通信功能&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;二、为什么内网功能正常？&lt;/h2&gt;&lt;p&gt;虽然图标显示异常，但内网的通信功能完全正常，原因如下：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;网络连接已建立&lt;/strong&gt;：IP 地址、子网掩码、网关等配置正确，可正常访问内网资源&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;内网服务独立&lt;/strong&gt;：内网有自己的 DNS、服务器和应用系统，与互联网验证无关&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;隔离是安全设计&lt;/strong&gt;：物理隔离恰恰是内网的安全保障，防止外部攻击&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;三、解决方案（可选）&lt;/h2&gt;&lt;p&gt;如果您希望消除地球图标，恢复正常显示，可尝试以下方法：&lt;/p&gt;&lt;div class=&quot;solution&quot;&gt;&lt;div class=&quot;solution-title&quot;&gt;方案 A：修改系统网络检测设置（推荐）&lt;/div&gt;&lt;ol class=&quot;solution-steps list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;按 &lt;code&gt;Win+R&lt;/code&gt;，输入 &lt;code&gt;regedit&lt;/code&gt;，打开注册表编辑器&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;导航至：&lt;code&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;找到并修改以下值：&lt;/p&gt;&lt;/li&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;将 &lt;code&gt;EnableActiveProbing&lt;/code&gt; 从 &lt;code&gt;1&lt;/code&gt; 改为 &lt;code&gt;0&lt;/code&gt;（禁用主动探测）&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;将 &lt;code&gt;ActiveWebProbeContent&lt;/code&gt; 和 &lt;code&gt;ActiveWebProbeHost&lt;/code&gt; 清空或修改为内网可访问的地址&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;li&gt;&lt;p&gt;重启计算机使更改生效&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class=&quot;solution&quot;&gt;&lt;div class=&quot;solution-title&quot;&gt;方案 B：禁用 IPv6（如果适用）&lt;/div&gt;&lt;ol class=&quot;solution-steps list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;打开&amp;quot;控制面板→网络和共享中心→更改适配器设置&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;右键点击正在使用的网络连接，选择&amp;quot;属性&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;取消勾选&amp;quot;Internet 协议版本 6 (TCP/IPv6)&amp;quot;，点击确定&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class=&quot;solution&quot;&gt;&lt;div class=&quot;solution-title&quot;&gt;方案 C：重启网络适配器（简单快速）&lt;/div&gt;&lt;ol class=&quot;solution-steps list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;在&amp;quot;网络适配器&amp;quot;窗口中，右键点击您的网络适配器&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;选择&amp;quot;禁用&amp;quot;，等待 5-10 秒&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;再右键点击，选择&amp;quot;启用&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class=&quot;solution&quot;&gt;&lt;div class=&quot;solution-title&quot;&gt;方案 D：更新网卡驱动（长期解决方案）&lt;/div&gt;&lt;ol class=&quot;solution-steps list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;按 &lt;code&gt;Win+X&lt;/code&gt;，选择&amp;quot;设备管理器&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;展开&amp;quot;网络适配器&amp;quot;，右键点击您的网卡&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;选择&amp;quot;更新驱动程序&amp;quot;→&amp;quot;自动搜索更新的驱动程序软件&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;方案 E：下载注册表文件&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; 1.&lt;a href=&quot;https://www.bh6pei.cn/zb_users/upload/2026/01/internet.reg&quot; target=&quot;_blank&quot;&gt;注册表文件&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;四、何时需要联系管理员？&lt;/h2&gt;&lt;p&gt;如果出现以下情况，请联系内网管理员：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;除图标异常外，内网功能也出现异常（如无法访问特定系统）&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;尝试上述方法后图标仍未恢复正常&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;您不确定修改系统设置是否会影响内网的安全策略&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/section&gt;&lt;section&gt;&lt;h2&gt;五、总结与建议&lt;/h2&gt;&lt;div class=&quot;important&quot;&gt;&lt;p&gt;内网显示地球图标但功能正常是 Windows 系统与内网物理隔离特性冲突的正常现象，不影响实际使用。&lt;/p&gt;&lt;/div&gt;&lt;/section&gt;&lt;footer&gt;&lt;p&gt;文档更新日期：2026年1月6日 | 信息安全提示：请遵守组织的网络安全政策&lt;/p&gt;&lt;/footer&gt;&lt;!--!doctype--&gt;</description><pubDate>Tue, 06 Jan 2026 09:48:32 +0800</pubDate></item><item><title>从《南京照相馆》到九三阅兵： 穿越历史硝烟的民族觉醒</title><link>https://www.bh6pei.cn/?id=9</link><description>&lt;p style=&quot;margin-left: 0px; text-indent: 28px; text-align: center;&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/10/202510111760173880523163.jpeg&quot; title=&quot;e3d84e1a9f21ad4450473b864e61a3bb.jpeg&quot; alt=&quot;e3d84e1a9f21ad4450473b864e61a3bb.jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;在中国第二历史档案馆的橱窗里&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;一本泛黄的相册&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;静静地诉说着那一段惨绝人寰的历史&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;。相册封面的利刃刺心图案早已褪色，但内页里日军屠城的照片依然触目惊心。这是罗瑾和吴旋用生命守护的&lt;/span&gt; &lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;京字第一号证据&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;，也是《南京照相馆》电影背后真实的历史回响。当我们凝视这些浸透血泪的影像时，耳畔仿佛传来 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;1937 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年寒冬的枪声与哭喊，那是一个民族最黑暗的记忆。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;一、照相馆里的血色记忆&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;1937 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;12 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;月 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;13 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;日，南京城破。华东照相馆学徒罗瑾在冲洗日军胶卷时，看到了令他终生难忘的画面：砍下的头颅被挑在刺刀上，妇女被凌辱后倒在血泊中，婴儿被抛向空中当靶子……&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;15&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;岁的少年颤抖着加洗了 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;30 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;张照片，用硬纸板装订成相册，在封面画下利刃刺心的图案。这个简单的举动，让他从此踏上了与死神共舞的道路。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;在日军眼皮底下保存罪证谈何容易？罗瑾将相册藏在厕所土墙的暗格里，每天提心吊胆地检查。两年后他被迫离开南京时，相册意外被同学吴旋发现。吴旋将其藏在毗卢寺佛像底座，在日军搜查时将相册贴身携带，数次与死神擦肩而过。这两位青年用整整九年时间，完成了一场跨越生死的守护。&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;1946 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年，当这本相册出现在南京审判战犯军事法庭时，主犯谷寿夫的脸色瞬间惨白 —— 铁证如山，他最终被押赴雨花台枪决。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;如今，这本相册静静地躺在中国第二历史档案馆。它不仅是&lt;/span&gt; &lt;span style=&quot;font-family:Calibri&quot;&gt;30 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;万遇难同胞的血泪控诉，更是一个民族觉醒的起点。正如远东国际军事法庭判决书所写：&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;日军在南京的暴行，是现代文明史上最黑暗的一页。&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;二、阅兵场上的大国重器&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;2025 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;9 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;月 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;3 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;日，&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;首都北京&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;天安门广场再次成为世界焦点。当&lt;/span&gt; &lt;span style=&quot;font-family:Calibri&quot;&gt;99B &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;坦克组成的 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;箭&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;型方队隆隆驶过，履带碾压过长安街的瞬间，历史的回响与现实的轰鸣交织在一起。这辆升级版的 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;陆战之王&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;配备无人武器站和智能头盔，火力精度比 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;99A &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;提升 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;40%&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;，可在复杂地形中实现全天候作战。紧随其后的 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;100 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;坦克和支援战车，不仅拥有格栅装甲和主防系统，还能通过无人机实现战场实时监控。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;空中梯队的轰鸣声由远及近，歼&lt;/span&gt; &lt;span style=&quot;font-family:Calibri&quot;&gt;- 20S &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;隐形战斗机如银鹰掠过天际。这款集隐身、超视距作战和智能协同于一体的战机，其雷达反射面积仅为 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;0.001 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;平方米，可在敌方防空系统眼皮底下实施精准打击。当东风 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;- 17 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;高超音速导弹亮相时，观礼台上的外国武官们纷纷举起望远镜 —— 这款能突破现有所有反导系统的 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;航母杀手&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;，将中国战略威慑能力提升到新高度。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;最震撼的当属战略打击群：&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;惊雷 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;- 1&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;空基导弹、&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;巨浪 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;- 3&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;潜射导弹、&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;东风 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;- 61&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;陆基导弹组成的 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;三位一体&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot; &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;核力量，以及射程覆盖全球的东风 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;- 5C &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;液体洲际导弹，如钢铁长城般展现着大国底气。德国《明镜》周刊惊叹：&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;中国的阅兵式不仅是军力展示，更是科技实力的宣言。&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;三、盛世安宁的守护之道&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;站在历史的长河边回望，滔滔江水裹挟着百年沧桑奔涌向前，当目光掠过&lt;/span&gt; &lt;span style=&quot;font-family:Calibri&quot;&gt;1937 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年南京城的断壁残垣，再投向如今天安门广场上猎猎飘扬的五星红旗，我们比任何时候都更能读懂 “落后就要挨打” 这六个字背后沉甸甸的血泪教训。那是一段刻在民族骨血里的黑暗岁月：&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;1937 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;12 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;月，南京城被战火笼罩，守城将士手中仅有 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;3 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;万支老旧步枪，许多武器甚至是历经数场战役的 “淘汰品”，射程不足、故障率极高；而城外，日军的坦克正碾过田间的麦苗，战机在天空中肆意盘旋投弹，立体攻势如黑云压城，守军将士即便抱着 “与城共存亡” 的决心，也难抵装备代差带来的巨大差距。城破之后，&lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;30 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;万手无寸铁的平民惨遭屠戮，秦淮河畔血流成河，六朝古都沦为人间炼狱 —— 这不是遥远的历史符号，而是用无数生命印证的残酷现实：没有强大的国力作支撑，和平便是易碎的泡沫，安宁更是奢望。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;和平来之不易，守护更担当。对于肩负着民族未来的青少年而言，守护和平不是一句空洞的口号，而是要从历史中汲取精神养分，在心中种下责任的种子。当孩子们走进南京大屠杀纪念馆，指尖轻轻拂过&lt;/span&gt; &lt;span style=&quot;font-family:宋体&quot;&gt;“灾难之墙” 上密密麻麻的遇难者姓名 —— 那些名字有的是稚气未脱的孩童，有的是白发苍苍的老人，有的是勤劳本分的工人，每一个名字背后都是一个曾经鲜活的生命，都是一个破碎的家庭。讲解员轻声讲述着 “约翰・拉贝日记” 里的救援故事，展示着幸存者珍藏的旧照片，那些泛黄的影像中，是日军暴行留下的铁证，也是人性在黑暗中闪耀的微光。这种直击心灵的震撼，远比教科书上的文字更能让孩子们懂得 “和平” 二字的分量。而当他们走进科技馆，戴上 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;VR &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;设备体验模拟阅兵时，眼前仿佛浮现出受阅部队整齐的方阵，耳边似乎响起激昂的《义勇军进行曲》，手中的模拟操作杆能 “操控” 战机翱翔，这种沉浸式体验让他们真切感受到祖国的强大，也让 “守护这份强大” 的信念在心中悄然萌芽。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;正如习近平总书记所言：&lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;“一个有希望的民族不能没有英雄，一个有前途的国家不能没有先锋。” 在守护和平的征程中，既有文天祥 “人生自古谁无死，留取丹心照汗青” 的悲壮，也有李大钊 “铁肩担道义，妙手著文章” 的担当；既有抗日战争中 “狼牙山五壮士” 纵身跳崖的决绝，也有抗美援朝战场上 “冰雕连” 战士冻僵仍保持战斗姿势的坚守。&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;#39;Segoe UI&amp;#39;;letter-spacing: 0;font-size: 14px;background: #FFFFFF&quot;&gt;&lt;span style=&quot;font-family:Segoe UI&quot;&gt;我们要让后代记住罗瑾、吴旋这样的无名英雄，更要让他们明白：今天的安宁，是无数先烈用生命铸就&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;#39;Segoe UI&amp;#39;;letter-spacing: 0;font-size: 16px;background: #FFFFFF&quot;&gt;&lt;span style=&quot;font-family:Segoe UI&quot;&gt;的。&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;让青少年记住这些英雄，不是要传递仇恨，而是要让他们明白：和平从不是天上掉下来的礼物，而是无数先烈用生命铸就的丰碑；安宁也不是永恒的状态，而是需要我们用心守护的珍宝。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;从南京照相馆里留存的、记录着日军暴行的黑白照片，到&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;今年激动人心的&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;九三阅兵中展示的、彰显着国家实力的&lt;/span&gt; &lt;span style=&quot;font-family:宋体&quot;&gt;“大国重器”，我们走过了 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;88 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年的风雨历程。这 &lt;/span&gt;&lt;span style=&quot;font-family:Calibri&quot;&gt;88 &lt;/span&gt;&lt;span style=&quot;font-family:宋体&quot;&gt;年里，有山河破碎的痛苦，也有浴火重生的坚韧；有百废待兴的艰难，也有日新月异的辉煌。那些浸透血泪的照片，提醒着我们曾经的屈辱与苦难；那些威震四方的武器，见证着我们如今的强大与自信。它们共同诉说着一个颠扑不破的真理：唯有自强，方能自立于世界民族之林。一个国家如果没有强大的军事力量，就无法抵御外来的侵略；没有先进的科技水平，就无法跟上时代的步伐；没有团结的民族精神，就无法凝聚前进的力量。从鸦片战争到新中国成立，从改革开放到新时代，中国人民用一次次的实践证明：只有自己强大了，才能掌握命运的主动权，才能让和平的阳光普照大地。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;如今，我们生活在盛世之中，享受着安宁带来的幸福：城市里车水马龙，人们安居乐业；校园里书声琅琅，孩子们茁壮成长；乡村间炊烟袅袅，农民们丰收喜悦。但我们不能忘记，这份安宁的背后，是祖国日益强大的综合国力在支撑，是无数人在平凡岗位上的默默付出在守护。边防战士在零下几十度的雪地里站岗，只为守护祖国的每一寸土地；医护人员在&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;医护&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;一线日夜坚守，只为守护人民的生命健康；科研人员在实验室里攻坚克难，只为让祖国在科技领域不再受制于人。这份安宁，不是一劳永逸的，它需要一代又一代中国人用智慧、勇气和担当去守护。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;作为新时代的中国人，我们每个人都是和平的守护者、安宁的建设者。对于成年人而言，要在自己的岗位上兢兢业业，为国家发展贡献力量：工人要造出更优质的产品，农民要种出更丰富的粮食，教师要培育更优秀的人才，科研人员要攻克更关键的技术。对于青少年而言，要树立远大理想，努力学习知识，增强本领：既要读万卷书，从历史中汲取智慧，从书本中学习知识；也要行万里路，走进社会，了解国情，增强对国家的认同感和责任感。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;历史是最好的教科书，也是最好的清醒剂。让我们以史为鉴，铭记过去的苦难，珍惜当下的和平；让我们面向未来，怀揣着对祖国的热爱，对和平的向往，在民族复兴的征程上续写新的辉煌。相信只要我们一代又一代人接力奋斗，不忘初心，牢记使命，就一定能守护好这份来之不易的安宁，让祖国的明天更加繁荣昌盛，让和平的种子在中华大地上永远生根发芽！&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:28px&quot;&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;“铭记历史、吾辈自强”&lt;/span&gt;&lt;span style=&quot;;font-family:宋体;font-size:14px&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 11 Oct 2025 17:10:13 +0800</pubDate></item><item><title>业余无线电成长之路——MMDVM</title><link>https://www.bh6pei.cn/?id=7</link><description>&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    Hello！大家好，这里是叶达达，BD4SJY!看来值友们是真的对业余无线电很感兴趣，那么今天就来交作业，上篇文章说好的，分享一下业余无线电玩法中较为常见，可玩性较高的MMDVM。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    写在开始，由于本篇幅内容需要一定的基础知识，所以，建议各位新手，先了解清楚，再进行尝试！老规矩，尽量安排干货，专业名词尽量的少用，为大家举一些通俗易懂的例子，如果在实际操作过程中有任何的疑问，也欢迎留言，欢迎广大值友和老HAM交流心得！下面有请今天的主角~
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/09/202509111757573209258713.webp&quot; platform=&quot;fe&quot; alt=&quot;66ab55d93f0872063.jpg_e1080.webp&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot; title=&quot;66ab55d93f0872063.jpg_e1080.webp&quot;/&gt;&lt;/a&gt;MMDVM盒子和摩托罗拉R7&amp;amp;SL2M手台&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    先说一下专业定义：MMDVM‌（Multi-Mode Digital Voice Modem）是一种多模式数字语音调制解调器，由‌英国HAM G4KLX发起的开源项目，遵循‌GPL v2协议。 它旨在成为开源的多模式数字语音调制解调器，能够实现‌ARM处理器和简单‌模拟接口板的功能。MMDVM自带‌RF电路板，用作互联网无线电网关，处理所有业余数字语音模式，将模拟无线电转换为数字无线电。‌
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    给大家翻译一下：通过MMDVM,就可以实现多种数字模式的电台快速接入互联网，实现跨地域互联互通。上一篇文章说到过很多种数字模式，厂家为了切身利益，各种数字模式之间都无法互通。并且作为无线电的通联距离也很有限。但是有了MMDVM，跨设备跨区域的通联成为了可能。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_613f311740c65e74e25da674ddd46d99.png&quot; platform=&quot;fe&quot; alt=&quot;7英寸MMDVM盒子&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;7英寸MMDVM盒子&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    给大家举个例子：A有一台DMR模式的数字手台在海南，B有一台C4FM的手台在新疆，首先他们的手台数字模式是无法互通的，其次，他们的距离太远了，没有办法直接通过手台进行联系。这时A和B各自拥有一台MMDVM盒子，A和B的盒子通过网络连接后台&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/fenlei/fuwuqi/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;服务器&lt;/a&gt;将他们手台信息进行互相交换，然后再进行解码发送到对方的手台上变成声音。说白了就是通过网络将两个手台的信号进行互通。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_b68f3348bccd1b384d58a541e29eb452.png&quot; platform=&quot;fe&quot; alt=&quot;示意图&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;示意图&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    结构：MMDVM的结构很其实简单，最常见的组合为热点板+树莓派，可能大家会和我一开始一样看到这里一头雾水，我来解释下，热点板的功能是接收和发送无线电信号，树莓派相当于一个小型的电脑&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/fenlei/zhuban/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;主板&lt;/a&gt;，里面会刷入Pi-star的系统，它可以将热点板接收或者需要发送的信号转换成数据，然后再通过互联网将信号发送到后台服务器，既可以和对方完成通联。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_29fbffaaad32b3dc55666aef467dc653.png&quot; platform=&quot;fe&quot; alt=&quot;MMDVM内部结构&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;MMDVM内部结构&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    可能有人会问，为什么有大有小？其实很多HAM都会自己动手组装，当然也有像我一样的，比较懒，就买现成的。盒子的大小取决于屏幕大小、&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/fenlei/dianchi/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;电池&lt;/a&gt;的多少、内部是否集成无线&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/fenlei/wangka/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;网卡&lt;/a&gt;等等。。。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    以上简单介绍了MMDVM的原理及组成，下面我们来说说，要如何才能使用MMDVM盒子完成通联。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    1、准备工作
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    ①设备：你手头必须拥有一台数字模式的设备，可以是手持也可以是车载。模式为上篇文章中介绍的几种主流模式，不知道的可以传送门过去翻阅一下。
&lt;/p&gt;
&lt;dir class=&quot;insert-card-editor&quot; res-data-id=&quot;8861831&quot; res-card-type=&quot;changwen&quot; data-v-app=&quot;&quot; style=&quot;outline: 0px; padding: 0px; max-width: 500px; margin: 0px auto; cursor: pointer; color: rgb(51, 51, 51); font-family: arial, sans-serif; font-size: 16px; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;
    &lt;div data-v-3ddeeb33=&quot;&quot; class=&quot;insert-card-editor-wrapper&quot; style=&quot;outline: 0px; width: 500px; margin: 0px auto;&quot;&gt;
        &lt;div data-v-3ddeeb33=&quot;&quot; class=&quot;damo-editor-card damo-editor-card-changwen insert-card-container__changwen insert-card-container&quot; tongji_data=&quot;[object Object]&quot; cardtype=&quot;changwen&quot; style=&quot;outline: 0px; height: var(--damo-editor-card-height); background-color: var(--damo-editor-card-bg-color); display: flex; border-radius: 6px; overflow: hidden; box-sizing: border-box; padding: var(--damo-editor-card-padding); position: relative; --damo-price-unit-font-size: var(--damo-editor-card-front-size-1); --damo-price-decimal-font-size: var(--damo-editor-card-front-size-1); --damo-price-info-font-size: var(--damo-editor-card-front-size-1); --damo-editor-card-bg-color: var(--damo-color-f9f9f9); --damo-editor-card-height: 104px; --damo-editor-card-padding: 12px; --damo-editor-card-margin-left: 12px; --damo-editor-card-focus-pic-size: 80px; --damo-editor-card-title-font-size: 16px; --damo-editor-card-title-line-height: 24px; --damo-editor-card-front-size-1: 14px; --damo-editor-card-front-size-2: 12px; --damo-editor-card-action-item-width: 57px; --damo-editor-card-risk-desc-pt: 26px; --damo-editor-card-brand-info-title-font-size: 14px; --damo-editor-card-brand-info-bottom-name-font-size: 14px; --damo-editor-card-brand-info-height: 35px; --damo-editor-card-brand-info-pb: 0; --damo-editor-card-brand-info-divider-height: 30px; --damo-editor-card-play-btn-size: 30px; --damo-editor-card-play-btn-icon-size: 16px; --damo-price-text-size: 16px; cursor: pointer; width: 500px; line-height: 1; margin: 0px auto 20px;&quot;&gt;
            &lt;div class=&quot;damo-editor-card-changwen__image&quot; style=&quot;outline: 0px; position: relative; flex-shrink: 0; overflow: hidden; border-radius: 3px; height: var(--damo-editor-card-focus-pic-size); width: var(--damo-editor-card-focus-pic-size);&quot;&gt;
                &lt;div class=&quot;article-pic&quot; style=&quot;outline: 0px; position: relative; padding-top: 80px; width: var(--damo-editor-card-focus-pic-size);&quot;&gt;
                    &lt;img srcset=&quot;&quot; data-src=&quot;/zb_users/upload/local_images/7_d0ed5d9e9343d193c46cba3567cec4ec.png&quot; src=&quot;/zb_users/upload/local_images/7_d0ed5d9e9343d193c46cba3567cec4ec.png&quot; lazy=&quot;loaded&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; position: absolute; inset: 0px; width: 80px; height: 80px; object-fit: cover;&quot;/&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;damo-editor-card-changwen__main&quot; style=&quot;outline: 0px; flex: 1 1 0%; width: 0px; display: flex; flex-direction: column; justify-content: space-between; margin-left: var(--damo-editor-card-margin-left);&quot;&gt;
                &lt;div class=&quot;card-title&quot; style=&quot;outline: 0px; font-size: var(--damo-editor-card-title-font-size); font-weight: 700; color: var(--damo-color-333); line-height: var(--damo-editor-card-title-line-height); display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; line-break: anywhere; -webkit-box-orient: vertical;&quot;&gt;
                    业余无线电成长之路——设备篇
                &lt;/div&gt;
                &lt;div class=&quot;content-bar damo-editor-card-changwen__action-bar&quot; style=&quot;outline: 0px; display: flex; align-items: center; margin-top: auto; margin-right: -3px;&quot;&gt;
                    &lt;div class=&quot;left&quot; style=&quot;outline: 0px; display: inline-flex; align-items: center; font-size: 12px; color: var(--damo-color-999); flex-wrap: nowrap; max-width: calc(100% - 105px); margin-right: 12px;&quot;&gt;
                        &lt;div class=&quot;avatar-img&quot; style=&quot;outline: 0px; width: 16px; height: 16px; border-radius: 50%; overflow: hidden; margin-right: 4px; flex-shrink: 0;&quot;&gt;
                            &lt;img src=&quot;/zb_users/upload/local_images/7_9753266fb01522b80c861a1e9b425c67.png&quot; alt=&quot;叶达达&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; width: 16px; height: 16px; object-fit: cover;&quot;/&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;avatar-name&quot; style=&quot;outline: 0px; display: inline-block; padding: 1px 0px; overflow: hidden; text-wrap: nowrap; text-overflow: ellipsis;&quot;&gt;
                            叶达达
                        &lt;/div&gt;
                        &lt;div class=&quot;divider&quot; style=&quot;outline: 0px; width: 1px; height: 10px; background-color: var(--damo-color-ddd); margin: 0px 6px;&quot;&gt;&lt;/div&gt;
                        &lt;div class=&quot;publish-date&quot; style=&quot;outline: 0px; display: inline-block; text-wrap: nowrap;&quot;&gt;
                            24-07-30
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;right&quot; style=&quot;outline: 0px; display: inline-flex; align-items: center; font-size: 12px; color: var(--damo-color-999); margin-left: auto; margin-right: -3px;&quot;&gt;
                        &lt;div class=&quot;action-item-wrapper&quot; style=&quot;outline: 0px; width: 44px; display: flex; align-items: center;&quot;&gt;
                            &lt;span class=&quot;zdm-icon&quot; style=&quot;outline: 0px; display: inline-flex; flex-grow: 0; flex-shrink: 0; justify-content: center; align-items: center; margin: 0px 2px 0px 0px; font-size: 13px; height: 13px;&quot;&gt;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewbox=&quot;0 0 32 32&quot; style=&quot;fill: currentcolor; width: 1em; height: 1em; vertical-align: middle;&quot;&gt;
                                &lt;path d=&quot;M23.86 4.473c2.524 0 4.579 2.003 4.664 4.506l0.003 0.16v11.062c0 2.524-2.003 4.579-4.514 4.664l-0.161 0.003-1.074-0.011-1.214-0.004-0.378 0.002-0.616 0.010-0.349 0.013-0.275 0.234-0.409 0.367-0.526 0.486-0.803 0.76-0.94 0.905c-0.762 0.738-1.959 0.749-2.735 0.045l-0.095-0.092-0.787-0.807-0.466-0.467-0.312-0.307-0.285-0.275-0.377-0.352-0.217-0.195-0.179-0.153-0.146-0.118-1.542-0.009-2.248 0.006c-2.524 0.011-4.588-1.982-4.684-4.485l-0.003-0.16v-11.121c0-2.524 2.003-4.579 4.506-4.664l0.16-0.003h16zM23.86 7.14h-16c-1.065 0-1.936 0.833-1.997 1.882l-0.003 0.117v11.1l0.004 0.127c0.063 1.011 0.876 1.817 1.888 1.871l0.118 0.003 1.259-0.005 1.471-0.001 0.989 0.005 0.303 0.007 0.256 0.015 0.076 0.009 0.097 0.016 0.13 0.033c0.254 0.076 0.524 0.227 0.854 0.479l0.127 0.099 0.255 0.213 0.28 0.249 0.244 0.226 0.405 0.388 0.298 0.292 0.637 0.637 0.344 0.351 1.15-1.098 0.623-0.58 0.216-0.196 0.382-0.336 0.246-0.205 0.215-0.168 0.127-0.092 0.116-0.078 0.105-0.064 0.096-0.050 0.086-0.037 0.098-0.034 0.107-0.029 0.058-0.013 0.127-0.022 0.145-0.018 0.166-0.014 0.189-0.011 0.216-0.008 0.527-0.010 1.020-0.004 0.753 0.003 1.167 0.012 0.151-0.003c1.011-0.059 1.82-0.868 1.879-1.879l0.003-0.117v-11.062c0-1.065-0.833-1.936-1.883-1.997l-0.117-0.003zM19.667 13.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667c-0.92 0-1.667-0.746-1.667-1.667s0.746-1.667 1.667-1.667zM12.333 13.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667c-0.92 0-1.667-0.746-1.667-1.667s0.746-1.667 1.667-1.667z&quot;&gt;&lt;/path&gt;
                            &lt;/svg&gt;&lt;/span&gt;&lt;span class=&quot;action-item__comment&quot; style=&quot;outline: 0px;&quot;&gt;58&lt;/span&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;action-item-wrapper&quot; style=&quot;outline: 0px; width: 47px; display: flex; align-items: center;&quot;&gt;
                            &lt;span class=&quot;zdm-icon&quot; style=&quot;outline: 0px; display: inline-flex; flex-grow: 0; flex-shrink: 0; justify-content: center; align-items: center; margin: 0px 2px 0px 0px; font-size: 13px; height: 13px;&quot;&gt;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewbox=&quot;0 0 32 32&quot; style=&quot;fill: currentcolor; width: 1em; height: 1em; vertical-align: middle;&quot;&gt;
                                &lt;path d=&quot;M13.071 7.334c0.225-2.992 2.139-4.928 4.541-4.641 2.363 0.282 4.040 2.603 4.040 5.743l-0.002 0.334-0.005 0.334-0.017 0.585 2.78 0.001c2.881 0 5.136 2.402 4.909 5.184l-0.015 0.155-0.020 0.156-1.371 9.288c-0.342 2.323-2.341 4.048-4.712 4.125l-0.166 0.003h-15.003c-1.57 0-2.9-1.142-3.104-2.67l-0.016-0.144-0.9-10.443c-0.151-1.758 1.224-3.254 2.98-3.329l0.139-0.003 3.177-0 0.125-0.040 0.139-0.053c0.328-0.132 0.661-0.33 0.973-0.606 0.82-0.725 1.37-1.855 1.499-3.558l0.027-0.42zM10.305 14.677l-3.174 0c-0.257 0-0.448 0.178-0.463 0.381l0 0.056 0.9 10.443c0.016 0.183 0.175 0.341 0.389 0.371l0.074 0.005 2.274-0v-11.257zM17.296 5.341c-0.751-0.090-1.439 0.597-1.562 2.145l-0.028 0.439c-0.177 2.404-1.041 4.191-2.394 5.386-0.112 0.099-0.225 0.192-0.34 0.28l-0 12.343 10.062 0c1.093 0 2.014-0.739 2.219-1.734l0.020-0.116 1.371-9.288c0.182-1.237-0.789-2.366-2.107-2.436l-0.129-0.003h-4.187c-0.774 0-1.386-0.657-1.33-1.429 0.061-0.843 0.093-1.665 0.093-2.491 0-1.889-0.795-2.989-1.689-3.095z&quot;&gt;&lt;/path&gt;
                            &lt;/svg&gt;&lt;/span&gt;&lt;span class=&quot;action-item__thumbs-up&quot; style=&quot;outline: 0px;&quot;&gt;96&lt;/span&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/dir&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    然后就是拥有一台MMDVM盒子，如果你比较喜欢研究、动手能力比较强，那么可以自行找一些相关资料以及网购组件自己动手组装，乐趣无穷。如果你和我一样比较懒，也可以选择网上购买现成的，这种设备一般为爱好者自己组装配合3D打印外壳，或者网购现成的盒子进行改造。这里面的水也比较深，主要是要找一个负责、耐心的卖家能够指导，所以购买需要谨慎，不要盲目购买。在这里我也给我师傅BH4THI打个广告，师傅技术过硬，都是他自己动手完成的，如果有需要的可以自行海鲜市场搜索BH4THI。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    ②帐号:申请国际ID，中国以46开头，申请国际ID的前提是你已经考取了A类操作证书并且设台取得呼号，因为在申请时，这两个证是必须要作为附件上传的。具体请通过传送门观看。
&lt;/p&gt;
&lt;dir class=&quot;insert-card-editor&quot; res-data-id=&quot;8862511&quot; res-card-type=&quot;changwen&quot; data-v-app=&quot;&quot; style=&quot;outline: 0px; padding: 0px; max-width: 500px; margin: 0px auto; cursor: pointer; color: rgb(51, 51, 51); font-family: arial, sans-serif; font-size: 16px; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;
    &lt;div data-v-3ddeeb33=&quot;&quot; class=&quot;insert-card-editor-wrapper&quot; style=&quot;outline: 0px; width: 500px; margin: 0px auto;&quot;&gt;
        &lt;div data-v-3ddeeb33=&quot;&quot; class=&quot;damo-editor-card damo-editor-card-changwen insert-card-container__changwen insert-card-container&quot; tongji_data=&quot;[object Object]&quot; cardtype=&quot;changwen&quot; style=&quot;outline: 0px; height: var(--damo-editor-card-height); background-color: var(--damo-editor-card-bg-color); display: flex; border-radius: 6px; overflow: hidden; box-sizing: border-box; padding: var(--damo-editor-card-padding); position: relative; --damo-price-unit-font-size: var(--damo-editor-card-front-size-1); --damo-price-decimal-font-size: var(--damo-editor-card-front-size-1); --damo-price-info-font-size: var(--damo-editor-card-front-size-1); --damo-editor-card-bg-color: var(--damo-color-f9f9f9); --damo-editor-card-height: 104px; --damo-editor-card-padding: 12px; --damo-editor-card-margin-left: 12px; --damo-editor-card-focus-pic-size: 80px; --damo-editor-card-title-font-size: 16px; --damo-editor-card-title-line-height: 24px; --damo-editor-card-front-size-1: 14px; --damo-editor-card-front-size-2: 12px; --damo-editor-card-action-item-width: 57px; --damo-editor-card-risk-desc-pt: 26px; --damo-editor-card-brand-info-title-font-size: 14px; --damo-editor-card-brand-info-bottom-name-font-size: 14px; --damo-editor-card-brand-info-height: 35px; --damo-editor-card-brand-info-pb: 0; --damo-editor-card-brand-info-divider-height: 30px; --damo-editor-card-play-btn-size: 30px; --damo-editor-card-play-btn-icon-size: 16px; --damo-price-text-size: 16px; cursor: pointer; width: 500px; line-height: 1; margin: 0px auto 20px;&quot;&gt;
            &lt;div class=&quot;damo-editor-card-changwen__image&quot; style=&quot;outline: 0px; position: relative; flex-shrink: 0; overflow: hidden; border-radius: 3px; height: var(--damo-editor-card-focus-pic-size); width: var(--damo-editor-card-focus-pic-size);&quot;&gt;
                &lt;div class=&quot;article-pic&quot; style=&quot;outline: 0px; position: relative; padding-top: 80px; width: var(--damo-editor-card-focus-pic-size);&quot;&gt;
                    &lt;img srcset=&quot;&quot; data-src=&quot;/zb_users/upload/local_images/7_45852610a5ff1be85639d192342ce984.png&quot; src=&quot;/zb_users/upload/local_images/7_45852610a5ff1be85639d192342ce984.png&quot; lazy=&quot;loaded&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; position: absolute; inset: 0px; width: 80px; height: 80px; object-fit: cover;&quot;/&gt;
                &lt;/div&gt;
            &lt;/div&gt;
            &lt;div class=&quot;damo-editor-card-changwen__main&quot; style=&quot;outline: 0px; flex: 1 1 0%; width: 0px; display: flex; flex-direction: column; justify-content: space-between; margin-left: var(--damo-editor-card-margin-left);&quot;&gt;
                &lt;div class=&quot;card-title&quot; style=&quot;outline: 0px; font-size: var(--damo-editor-card-title-font-size); font-weight: 700; color: var(--damo-color-333); line-height: var(--damo-editor-card-title-line-height); display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; line-break: anywhere; -webkit-box-orient: vertical;&quot;&gt;
                    业余无线电的成长之路——国际ID（radio id）的申请
                &lt;/div&gt;
                &lt;div class=&quot;content-bar damo-editor-card-changwen__action-bar&quot; style=&quot;outline: 0px; display: flex; align-items: center; margin-top: auto; margin-right: -3px;&quot;&gt;
                    &lt;div class=&quot;left&quot; style=&quot;outline: 0px; display: inline-flex; align-items: center; font-size: 12px; color: var(--damo-color-999); flex-wrap: nowrap; max-width: calc(100% - 105px); margin-right: 12px;&quot;&gt;
                        &lt;div class=&quot;avatar-img&quot; style=&quot;outline: 0px; width: 16px; height: 16px; border-radius: 50%; overflow: hidden; margin-right: 4px; flex-shrink: 0;&quot;&gt;
                            &lt;img src=&quot;/zb_users/upload/local_images/7_9753266fb01522b80c861a1e9b425c67.png&quot; alt=&quot;叶达达&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; width: 16px; height: 16px; object-fit: cover;&quot;/&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;avatar-name&quot; style=&quot;outline: 0px; display: inline-block; padding: 1px 0px; overflow: hidden; text-wrap: nowrap; text-overflow: ellipsis;&quot;&gt;
                            叶达达
                        &lt;/div&gt;
                        &lt;div class=&quot;divider&quot; style=&quot;outline: 0px; width: 1px; height: 10px; background-color: var(--damo-color-ddd); margin: 0px 6px;&quot;&gt;&lt;/div&gt;
                        &lt;div class=&quot;publish-date&quot; style=&quot;outline: 0px; display: inline-block; text-wrap: nowrap;&quot;&gt;
                            24-08-01
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class=&quot;right&quot; style=&quot;outline: 0px; display: inline-flex; align-items: center; font-size: 12px; color: var(--damo-color-999); margin-left: auto; margin-right: -3px;&quot;&gt;
                        &lt;div class=&quot;action-item-wrapper&quot; style=&quot;outline: 0px; width: 44px; display: flex; align-items: center;&quot;&gt;
                            &lt;span class=&quot;zdm-icon&quot; style=&quot;outline: 0px; display: inline-flex; flex-grow: 0; flex-shrink: 0; justify-content: center; align-items: center; margin: 0px 2px 0px 0px; font-size: 13px; height: 13px;&quot;&gt;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewbox=&quot;0 0 32 32&quot; style=&quot;fill: currentcolor; width: 1em; height: 1em; vertical-align: middle;&quot;&gt;
                                &lt;path d=&quot;M23.86 4.473c2.524 0 4.579 2.003 4.664 4.506l0.003 0.16v11.062c0 2.524-2.003 4.579-4.514 4.664l-0.161 0.003-1.074-0.011-1.214-0.004-0.378 0.002-0.616 0.010-0.349 0.013-0.275 0.234-0.409 0.367-0.526 0.486-0.803 0.76-0.94 0.905c-0.762 0.738-1.959 0.749-2.735 0.045l-0.095-0.092-0.787-0.807-0.466-0.467-0.312-0.307-0.285-0.275-0.377-0.352-0.217-0.195-0.179-0.153-0.146-0.118-1.542-0.009-2.248 0.006c-2.524 0.011-4.588-1.982-4.684-4.485l-0.003-0.16v-11.121c0-2.524 2.003-4.579 4.506-4.664l0.16-0.003h16zM23.86 7.14h-16c-1.065 0-1.936 0.833-1.997 1.882l-0.003 0.117v11.1l0.004 0.127c0.063 1.011 0.876 1.817 1.888 1.871l0.118 0.003 1.259-0.005 1.471-0.001 0.989 0.005 0.303 0.007 0.256 0.015 0.076 0.009 0.097 0.016 0.13 0.033c0.254 0.076 0.524 0.227 0.854 0.479l0.127 0.099 0.255 0.213 0.28 0.249 0.244 0.226 0.405 0.388 0.298 0.292 0.637 0.637 0.344 0.351 1.15-1.098 0.623-0.58 0.216-0.196 0.382-0.336 0.246-0.205 0.215-0.168 0.127-0.092 0.116-0.078 0.105-0.064 0.096-0.050 0.086-0.037 0.098-0.034 0.107-0.029 0.058-0.013 0.127-0.022 0.145-0.018 0.166-0.014 0.189-0.011 0.216-0.008 0.527-0.010 1.020-0.004 0.753 0.003 1.167 0.012 0.151-0.003c1.011-0.059 1.82-0.868 1.879-1.879l0.003-0.117v-11.062c0-1.065-0.833-1.936-1.883-1.997l-0.117-0.003zM19.667 13.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667c-0.92 0-1.667-0.746-1.667-1.667s0.746-1.667 1.667-1.667zM12.333 13.333c0.92 0 1.667 0.746 1.667 1.667s-0.746 1.667-1.667 1.667c-0.92 0-1.667-0.746-1.667-1.667s0.746-1.667 1.667-1.667z&quot;&gt;&lt;/path&gt;
                            &lt;/svg&gt;&lt;/span&gt;&lt;span class=&quot;action-item__comment&quot; style=&quot;outline: 0px;&quot;&gt;24&lt;/span&gt;
                        &lt;/div&gt;
                        &lt;div class=&quot;action-item-wrapper&quot; style=&quot;outline: 0px; width: 47px; display: flex; align-items: center;&quot;&gt;
                            &lt;span class=&quot;zdm-icon&quot; style=&quot;outline: 0px; display: inline-flex; flex-grow: 0; flex-shrink: 0; justify-content: center; align-items: center; margin: 0px 2px 0px 0px; font-size: 13px; height: 13px;&quot;&gt;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewbox=&quot;0 0 32 32&quot; style=&quot;fill: currentcolor; width: 1em; height: 1em; vertical-align: middle;&quot;&gt;
                                &lt;path d=&quot;M13.071 7.334c0.225-2.992 2.139-4.928 4.541-4.641 2.363 0.282 4.040 2.603 4.040 5.743l-0.002 0.334-0.005 0.334-0.017 0.585 2.78 0.001c2.881 0 5.136 2.402 4.909 5.184l-0.015 0.155-0.020 0.156-1.371 9.288c-0.342 2.323-2.341 4.048-4.712 4.125l-0.166 0.003h-15.003c-1.57 0-2.9-1.142-3.104-2.67l-0.016-0.144-0.9-10.443c-0.151-1.758 1.224-3.254 2.98-3.329l0.139-0.003 3.177-0 0.125-0.040 0.139-0.053c0.328-0.132 0.661-0.33 0.973-0.606 0.82-0.725 1.37-1.855 1.499-3.558l0.027-0.42zM10.305 14.677l-3.174 0c-0.257 0-0.448 0.178-0.463 0.381l0 0.056 0.9 10.443c0.016 0.183 0.175 0.341 0.389 0.371l0.074 0.005 2.274-0v-11.257zM17.296 5.341c-0.751-0.090-1.439 0.597-1.562 2.145l-0.028 0.439c-0.177 2.404-1.041 4.191-2.394 5.386-0.112 0.099-0.225 0.192-0.34 0.28l-0 12.343 10.062 0c1.093 0 2.014-0.739 2.219-1.734l0.020-0.116 1.371-9.288c0.182-1.237-0.789-2.366-2.107-2.436l-0.129-0.003h-4.187c-0.774 0-1.386-0.657-1.33-1.429 0.061-0.843 0.093-1.665 0.093-2.491 0-1.889-0.795-2.989-1.689-3.095z&quot;&gt;&lt;/path&gt;
                            &lt;/svg&gt;&lt;/span&gt;&lt;span class=&quot;action-item__thumbs-up&quot; style=&quot;outline: 0px;&quot;&gt;17&lt;/span&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/dir&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    &lt;a target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow&quot; href=&quot;https://brandmeister.network/?page=register&quot; title=&quot;BM网站帐号申请&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;BM网站帐号申请&lt;/a&gt;，这是我们的设备后面需要使用到的服务器帐号，必须要后台维护后才可以正常使用MMDVM盒子。注册内容参考下图：
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_aebbf2eaba69e9e6c5f18bd9fc297ccd.png&quot; platform=&quot;fe&quot; alt=&quot;BM网站注册参考&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;BM网站注册参考&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    以上就是所有需要准备的设备以及需要提前注册准备的帐号。缺少任何一个都是无法正常使用MMDVM的。接下来我们先讲一讲我们用这个盒子可以和谁通联。最后再来说相关的设置问题。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    首先要知道DMR通讯是无线电中模式中的一种，他的设置也是基于无线电频率，我们依旧以无锡数字中继为例子，官方发布的数据参考下图，一起来解读一下，首先我们要在设备中创建一个数字信道，这里必须是DMR模式，因为中继是DMR模式，接收频率439.350，发射频率431.350，这个前面说过了什么叫下差不多说了，色码，你可以理解为模拟信号的亚音码，他也是固定的几个数值，跟着官方信息选择就好了。时隙，DMR的时隙有1和2两个，称为双时隙，你可以理解为这是一个双车道，传统的模拟信道是单车道，只能开一辆车，这里有两个车道，那么就可以满足两个组同时说话，互不干扰，大大提高了中继的使用效率。再来看最下面的46001组、460510组这个组我们可以理解为两个群，46001是中国DMR群的编号，只要加入这个群就可以和大家一起聊天，而且都是国人，几乎没有国际友人，当然也不排除国际友人来群里做客。460510是无锡群，即无锡当地的爱好者都在这个群里面。所以我们如果用无锡数字中继的话，需要在通讯录中存好组的号码，比如接收频率439.350，发射频率431.350，色码9、时隙1，设置联系人组为46001（中国组），由于无锡的中继是通过互联网连接到BM服务器后台的，所以这时我们在这个频率上喊话，通过MMDVM连接到46001组的所有电台都可以听得到。再比如收频率439.350，发射频率431.350，色码9、时隙2，设置联系人组为460510（中国组），我今天去外地出差已经脱离了当地中继的覆盖范围，我带了我的mmdvm，我可以通过盒子设置后台BM服务器的组别为460510，然后用手台通过 MMDVM再转发到BM服务器，服务器转发到无锡中继，无锡中继再传播到无锡当地覆盖范围内守听在频率439.350，发射频率431.350，色码9、时隙2的电台上。你也可以把数字中继理解成一个放大版架的很高的MMDVM盒子。所以除了46001（中国组）460510（无锡组）还有很多的分组。比如91（世界组）全球的外国友人都会不时的上线，&lt;span style=&quot;outline: 0px;&quot;&gt;460319（邢台组）都是比较活跃的，这是一个一个的群，你进去了就可以找到在这个群里的人聊天，只是这个不是1对1的，在这个群组的人都能听到。这就是MMDVM好玩的地方，只要有网络，不限场地，不限时间，都可以找到千里之外的人进行通联。&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_f69c3527058a653dbb70c63086501861.png&quot; platform=&quot;fe&quot; alt=&quot;无锡数字中继参数&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;无锡数字中继参数&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    接下来我们来说说如何设置mmdvm盒子以及后台BM网站的相关配置。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    当我们收到盒子，不管什么盒子，如果没有配置当地的网络，那么它是不会自动联网的，所以开机后静止一会，几分钟后盒子找不到网络，它会打开自己的网络热点，此时，我们用电脑连接他的网络热点信号，这个热点是不加密的，此时我们看一下盒子上的IP地址，在浏览器输入IP地址，我这里由于已经联网，我就不再演示连接网络热点的步骤了。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_1f9db0b0b9cf0ee87a344d22e0036d61.png&quot; platform=&quot;fe&quot; alt=&quot;IP地址192.168.2.135&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;IP地址192.168.2.135&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    1、进入网页后我们看到的是这样的画面，点击右上角配置：
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_bf3b8a1aa5838fd5bbc434741b7b5f41.png&quot; platform=&quot;fe&quot; alt=&quot;登入页面&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;登入页面&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    2、登入系统，默认用户名pi-star密码raspberry，点击确认登录。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_5977dbc9a4c7d8bd24faa037ec3dd688.png&quot; platform=&quot;fe&quot; alt=&quot;输入账号密码&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;输入账号密码&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    3、新机器先配置WIFI，点击箭头所指。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_38f809441bdcec2ac2c542daa695db7f.png&quot; platform=&quot;fe&quot; alt=&quot;添加WIFI&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;添加WIFI&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    4、输入WIFI用户名及密码，不要用中文名称，系统会反映不过来，我一般是设置一个家里的还有一个&lt;a class=&quot;seo_link&quot; href=&quot;https://www.smzdm.com/fenlei/zhinengshouji/&quot; target=&quot;_blank&quot; style=&quot;outline: 0px; color: rgb(51, 51, 51); text-decoration-line: none; cursor: pointer; line-height: 20px; border-bottom: 1px dashed rgb(51, 51, 51);&quot;&gt;手机&lt;/a&gt;热点，方便外出使用。然后点击SAVE保存。保存成功后，下次开机就会自动连接已经保存的WIFI信息，电脑只要和盒子连接在同一网络，输入IP地址就可以直接登入后台系统了。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_a059709130e5f2ab8af08d733defdc64.png&quot; platform=&quot;fe&quot; alt=&quot;配置WIFI&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;配置WIFI&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    5、常规配置，这里输入打勾的就是我们要设置的，呼号、国际ID、盒子的发射和接收频率，这几项设置好以后，一定要记住发射和接收频率，以便我们在 手台上设置。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_2721266641fef279cead8adaf4309b68.png&quot; platform=&quot;fe&quot; alt=&quot;设置说明&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;设置说明&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    6、下面还有DMR配置，Hotspot Security，这里设置一个纯数字的密码，一定要记住，不行的话1234567890也可以，ESSID随便选，这是因为当我们有多个设备时，可以给每个设备加一个不同的后缀来区分设备。色码就选1，无所谓。全部改完以后，点击应用设置。至此MMDVM盒子就设置好了。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    接下来我们再来看看BM后台怎么设置。
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    1、登入我们的&lt;a target=&quot;_blank&quot; rel=&quot;noopener noreferrer nofollow&quot; href=&quot;https://brandmeister.network/&quot; title=&quot;BM帐号网站&quot; style=&quot;outline: 0px; text-decoration-line: none; cursor: pointer;&quot;&gt;BM帐号网站&lt;/a&gt;，点击左侧色SelfCare，还记得刚才在盒子里设置的Hotspot Security吗？或者我建议的1234567890，填到下面的框里，然后点击保存。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_81d8f5d9b73ec96a3c855377d0f84b71.png&quot; platform=&quot;fe&quot; alt=&quot;Hotspot Security设置&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;Hotspot Security设置&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    2、还记得刚才说的ESSID吗？选择左边对应的设备编号，然后可以看到右边有两个框一个是时隙1一个是时隙2，这时候我们可以设置时隙1的静态组添加哪个，时隙2的静态组添加哪个，手动输入到左侧方框内，点击→箭头可以保存，←则是删除，我这里时隙1添加的46001、时隙2添加的460510，你也可以添加本地的或者91全球组听听看外国友人是如何通联的。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_e695624ff9ba3d0e63abd2e7ac2c111f.png&quot; platform=&quot;fe&quot; alt=&quot;静态组设置&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;静态组设置&lt;/span&gt;&lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_6f881f0353313cb0230559b208829fda.png&quot; platform=&quot;fe&quot; alt=&quot;设置完成后的盒子显示&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;设置完成后的盒子显示&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    至此我们的MMDVM盒子已经完全设置好了，两个时隙会同时工作，第一个时隙可以在46001群里通联，第二个时隙可以在460510无锡组通联。最后我们再来看看电台应该如何设置。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_8f47362250a00e14b6a16a9be32e3d1e.png&quot; platform=&quot;fe&quot; alt=&quot;HP780设置说明&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;HP780设置说明&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    我们从上图可以看到，接收发射频率和盒子设置的发射接收频率匹配，时隙1，色码1，选择呼叫联系人46001全国组，给他存个名字全国组，这时只要我们的盒子开机，手台就可以通过盒子和46001上守听的友台进行通联了。
&lt;/p&gt;
&lt;p&gt;
    &lt;span class=&quot;img_desc&quot; style=&quot;outline: 0px; display: block; margin: 0px auto 20px; text-align: center; color: var(--color-999); font-stretch: normal; line-height: 1.21; font-family: arial, sans-serif; text-wrap: wrap; background-color: #FFFFFF;&quot;&gt;&lt;img src=&quot;/zb_users/upload/local_images/7_46b0c0109a63007a960117b294afc420.png&quot; platform=&quot;fe&quot; alt=&quot;MMDVM盒子和摩托罗拉R7&quot; issmzmd=&quot;true&quot; local_id=&quot;&quot; picture_id=&quot;&quot; image_tag=&quot;[]&quot; other_data=&quot;{}&quot; image_product_tag=&quot;[]&quot; empty=&quot;false&quot; style=&quot;outline: 0px; border: 0px none; font-size: 0px; vertical-align: middle; max-width: 100%; display: block; margin: 0px auto 10px; padding-bottom: 0px;&quot;/&gt;&lt;/a&gt;MMDVM盒子和摩托罗拉R7&lt;/span&gt;
&lt;/p&gt;
&lt;p itemprop=&quot;description&quot; style=&quot;margin-top: 0px; margin-bottom: 20px; outline: 0px; padding: 0px; font-size: 16px; line-height: 1.8; overflow-wrap: break-word; color: rgb(51, 51, 51); white-space: pre-wrap; font-family: arial, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;
    写在最后，声明一下，本人写文章没有任何利益关系，纯粹的喜好，希望我的分享能够帮助更多的新手朋友接触到更多不一样的东西，有很多地方写的不是那么的清晰，如果大家有任何的疑问可以随时留言。还有就是老生常谈，通联务必遵守法律法规，规范通联。不要违规或者影响他人。也许这次的文章相比之前的基础知识更近了一部，有些同学可能还没上车，但是我相信，只要感兴趣，这篇文章总能帮助到有需要的人。码字不易，还请各位值友点个赞，收藏一下，以备不时之需。再次感谢各位值友的支持。谢谢！
&lt;/p&gt;
&lt;p&gt;
    &lt;br style=&quot;text-wrap: wrap;&quot;/&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;br/&gt;
&lt;/p&gt;</description><pubDate>Tue, 26 Aug 2025 17:56:21 +0800</pubDate></item><item><title>56K的猫叫，停在了2025：互联网最著名的声音即将沉寂</title><link>https://www.bh6pei.cn/?id=6</link><description>&lt;p data-track=&quot;24&quot; style=&quot;margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255); margin-top: 0px !important;&quot;&gt;20世纪90年代，若想接入互联网，需备三样东西：调制解调器（猫Modem）、足够的钱——还有耐心。调制解调器拨号上网是常见的上网方式，用户通过电话线路连接ISP服务商，借助调制解调器将模拟信号转换为数字信号进行传输（解调）。&lt;/p&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/09/202509091757388823210353.jpeg&quot; title=&quot;202508281756348601460279.jpeg&quot; alt=&quot;202508281756348601460279.jpeg&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;先是拨号的声响，接着便是那串由嗡嗡声、尖鸣声和嘟声交织成的“独特乐章”，随后心里总会犯嘀咕：“连上了吗？”如今，这声音将永远沉寂。&lt;/p&gt;&lt;p data-track=&quot;26&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;2025年9月30日，这个让90年代互联网用户刻骨铭心的声音，将彻底消失。&lt;span style=&quot;box-sizing: border-box; font-weight: 700; margin: 0px; padding: 0px; border: 0px;&quot;&gt;作为拨号上网业务的先驱，&lt;/span&gt;运营34年后，美国在线（AOL）将关停其调制解调器服务。至此，通过调制解调器拨号上网的时代即将彻底成为历史。&lt;/p&gt;&lt;div class=&quot;pgc-img&quot; style=&quot;box-sizing: border-box; margin: 18px 0px; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/08/202508281756348498168265.jpeg&quot; img_width=&quot;1920&quot; img_height=&quot;1440&quot; image_type=&quot;1&quot; mime_type=&quot;image/png&quot; web_uri=&quot;tos-cn-i-6w9my0ksvp/e581b9d4643d4cf1a2e0bfcf19a019ad&quot; class=&quot;syl-page-img&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-axegupay5k/c2493c46dd5949b0b4938281378ac0b0~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1756109172&amp;amp;x-signature=kxQvZoKFJm3xYm8KSyNp69PzfxU%3D&quot; alt=&quot;c2493c46dd5949b0b4938281378ac0b0~tplv-tt-origin-web_gif.jpeg&quot; title=&quot;c2493c46dd5949b0b4938281378ac0b0~tplv-tt-origin-web_gif.jpeg&quot; style=&quot;box-sizing: border-box; border: 0px; margin: 0px auto 8px; padding: 0px; max-width: 100%; display: block; border-radius: 4px; cursor: zoom-in; height: auto;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;br style=&quot;color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;/&gt;&lt;/p&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;其实在中国，虽然现在宽带接入技术已经非常发达，光纤入户等方式成为主流，&lt;span style=&quot;box-sizing: border-box; font-weight: 700; margin: 0px; padding: 0px; border: 0px;&quot;&gt;但理论上来讲，&lt;/span&gt;仍支持调制解调器拨号上网&lt;span style=&quot;box-sizing: border-box; font-weight: 700; margin: 0px; padding: 0px; border: 0px;&quot;&gt;——当然不会有人再去尝试。&lt;/span&gt;不过需要注意的是，2023年发布的《关于电信设备进网许可制度若干改革举措的通告》中提到，对调制解调器（含卡）等11种电信设备，不再受理和审批新的进网许可申请。这意味着虽然仍然可以使用调制解调器拨号上网，但新的调制解调器设备已不能再办理进网许可。你足够闲的话，可以把30多年前的小猫翻出来试一下（估计如今的电脑也找不到RS-232串口了）。&lt;/p&gt;&lt;p data-track=&quot;28&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;当然，如果将“拨号”这个定义扩大化，目前国内大多数用户办理的宽带都属于PPPoE拨号类型，只不过现在通常是由光猫或无线路由器自动完成拨号连接。在一些老旧小区或宿舍楼，可能还在使用需要手动拨号上网的老式SFU光猫，而新型HGU光猫虽然数据传到光猫后内部依然有拨号过程，但无需用户手动操作。&lt;/p&gt;&lt;h1 class=&quot;pgc-h-arrow-right&quot; data-track=&quot;30&quot; style=&quot;box-sizing: border-box; font-size: 1.056em; margin: 20px 0px; padding: 0px; border: 0px; line-height: 1.579; position: relative; font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;20世纪90年代的互联网：128kBit/s已是“高速”&lt;/h1&gt;&lt;p data-track=&quot;31&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;拨号上网服务于1991年在美国推出，当时宽带接入还只是遥不可及的设想。对数百万人而言，拨号上网是他们踏入网络世界的第一站。不过，用户不会直接进入网页，而是先看到色彩斑斓的各大“信息港”门户网站，上面有聊天室功能、新闻和软件下载。&lt;/p&gt;&lt;p data-track=&quot;32&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;从技术层面看，这一切都通过电话线实现。调制解调器拨通号码，用一阵尖鸣声协商数据连接，期间固定电话也会被占用。传输速率起初是14.4k bit/s，后来提升到56k bit/s（我的猫是33.6k的），即便如此，加载一个网页往往也要考验耐心。但在当时，这却充满了未来感——毕竟90年代，万维网才刚刚向公众开放。&lt;/p&gt;&lt;p data-track=&quot;33&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;90年代后期出现的所谓“高速”互联网，往好了说就是64kbit/s的ISDN（综合业务数字网），换算下来仅为0.064Mbit/s。要是想在网上“提速”，就得用ISDN通道捆绑技术，把速度提至128kbit/s——但费用也会增加。对于后来使用ISDN这种当时更加先进的数字接入方式的用户来说，虽然调制解调器的杂音消失了，但拨号上网的原理仍在。而对大多数人而言，依然沿用调制解调器拨号上网。&lt;/p&gt;&lt;h1 class=&quot;pgc-h-arrow-right&quot; style=&quot;box-sizing: border-box; font-size: 1.056em; margin: 20px 0px; padding: 0px; border: 0px; line-height: 1.579; position: relative; font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;关于拨号上网的那段岁月&lt;/h1&gt;&lt;p data-track=&quot;36&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;依稀记得，那年月连OICQ都没有，网络联系主要通过Email，为了省96169卡的时长，我连免费263邮箱都不愿登陆，拨号连接几分钟，把邮件下载到本地Foxmail或Outlook客户端，然后再断网查看那是常事。那是个连加载图片都要烧香的年代，正是后来各大论坛“多图杀猫”梗的由来。&lt;/p&gt;&lt;div class=&quot;pgc-img&quot; style=&quot;box-sizing: border-box; margin: 18px 0px; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/08/202508281756348667647582.jpeg&quot; img_width=&quot;1920&quot; img_height=&quot;1076&quot; image_type=&quot;1&quot; mime_type=&quot;image/png&quot; web_uri=&quot;tos-cn-i-6w9my0ksvp/cc1bd1ec2cee4a838cb87d5fea3c677b&quot; class=&quot;syl-page-img&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/cc1bd1ec2cee4a838cb87d5fea3c677b~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1756109172&amp;amp;x-signature=C%2BT2F6b7EeTv%2FA0Ek7jncq29E%2Bw%3D&quot; alt=&quot;a1f4805540ea468e9d952e6ff8d5c503~tplv-tt-origin-web_gif.jpeg&quot; title=&quot;a1f4805540ea468e9d952e6ff8d5c503~tplv-tt-origin-web_gif.jpeg&quot; style=&quot;box-sizing: border-box; border: 0px; margin: 0px auto 8px; padding: 0px; max-width: 100%; display: block; border-radius: 4px; cursor: zoom-in; height: auto;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p data-track=&quot;44&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;所谓的三大门户更是98年之后的事情，最常去逛的是四通利方（好像是新浪前身）聊天室、还未内部封闭的水木清华BBS，或者在简陋的Mud文字游戏里打怪升级再娶四五个老婆……&lt;/p&gt;&lt;div class=&quot;pgc-img&quot; style=&quot;box-sizing: border-box; margin: 18px 0px; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/08/202508281756348684374227.jpeg&quot; img_width=&quot;1920&quot; img_height=&quot;1241&quot; image_type=&quot;1&quot; mime_type=&quot;image/png&quot; web_uri=&quot;tos-cn-i-6w9my0ksvp/44fc0e476eb74cb5a49a61f6f9d34ee1&quot; class=&quot;syl-page-img&quot; data-src=&quot;https://p3-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/44fc0e476eb74cb5a49a61f6f9d34ee1~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1756109172&amp;amp;x-signature=Cg%2F3jB60tkoRvK9nHQgFMEZapvs%3D&quot; alt=&quot;cd6afeba6518466bb0969d062c7c9238~tplv-tt-origin-web_gif.jpeg&quot; title=&quot;cd6afeba6518466bb0969d062c7c9238~tplv-tt-origin-web_gif.jpeg&quot; style=&quot;box-sizing: border-box; border: 0px; margin: 0px auto 8px; padding: 0px; max-width: 100%; display: block; border-radius: 4px; cursor: zoom-in; height: auto;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;我不是在单纯怀旧，我是想说那时的中文互联网是有一定门槛的，不管是经济门槛还是学历门槛。当时的网络环境，似乎每个人都彬彬有礼，和谐得像“东瀛资源”论坛。如今网络门槛降低的结果就是多数人都又凶又狠、易被煽动，让人永远怀念那一段时光。&lt;/p&gt;&lt;h1 class=&quot;pgc-h-arrow-right&quot; style=&quot;box-sizing: border-box; font-size: 1.056em; margin: 20px 0px; padding: 0px; border: 0px; line-height: 1.579; position: relative; font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;ADSL的出现，敲响了拨号的丧钟&lt;/h1&gt;&lt;p data-track=&quot;41&quot; style=&quot;margin-top: 20px; margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;世纪之交，随着ADSL的兴起（如今又有了光纤上网），调制解调器上网的需求锐减。尽管如此，仍有不少人坚守这项旧技术：据媒体报道，2015年美国中西部仍有约200万用户付费使用这项服务——他们大多是出于习惯，或是因为没有其他选择。即便到2021年，用户仍有150万左右，但其中实际用到调制解调器上网的仅几千人。在欧洲，拨号上网接入业务也被各大电信运营商来回转手，关于仍能使用调制解调器拨号上网的可靠报道，已是好几年前的事了。&lt;/p&gt;&lt;div class=&quot;pgc-img&quot; style=&quot;box-sizing: border-box; margin: 18px 0px; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/08/202508281756348699510868.jpeg&quot; img_width=&quot;1920&quot; img_height=&quot;1920&quot; image_type=&quot;1&quot; mime_type=&quot;image/png&quot; web_uri=&quot;tos-cn-i-6w9my0ksvp/d3b5d166a8164c15bbf198ff8fc7e402&quot; class=&quot;syl-page-img&quot; data-src=&quot;https://p26-sign.toutiaoimg.com/tos-cn-i-6w9my0ksvp/d3b5d166a8164c15bbf198ff8fc7e402~tplv-tt-origin-web:gif.jpeg?_iz=58558&amp;amp;from=article.pc_detail&amp;amp;lk3s=953192f4&amp;amp;x-expires=1756109172&amp;amp;x-signature=8YlCIb6kI7P7Np6f4fz4II3nI1c%3D&quot; alt=&quot;d3b5d166a8164c15bbf198ff8fc7e402~tplv-tt-origin-web_gif.jpeg&quot; title=&quot;d3b5d166a8164c15bbf198ff8fc7e402~tplv-tt-origin-web_gif.jpeg&quot; style=&quot;box-sizing: border-box; border: 0px; margin: 0px auto 8px; padding: 0px; max-width: 100%; display: block; border-radius: 4px; cursor: zoom-in; height: auto;&quot;/&gt;&lt;p class=&quot;pgc-img-caption&quot; style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; margin-bottom: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p style=&quot;margin-top: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255); margin-bottom: 0px !important;&quot;&gt;如今在国内，真的没人再需要依赖调制解调器拨号上网了。即便个别偏远山区至今仍未通ADSL和光纤，至少还有移动基站上网这一替代方案。但对90年代的互联网用户而言，留下的只有回忆：或许是杂物间里那台尘封的小猫，或许是对调制解调器杂音的记忆。如今逐渐关停的这项服务，消失的不仅是一项业务，还有那个陪伴了整整一代人踏入网络时代的声音。&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;text-wrap: wrap;&quot;/&gt;&lt;/p&gt;&lt;p data-track=&quot;24&quot; style=&quot;margin-bottom: 20px; box-sizing: border-box; padding: 0px; border: 0px; color: rgb(34, 34, 34); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Arial, sans-serif; font-size: 18px; text-align: justify; text-wrap: wrap; background-color: rgb(255, 255, 255); margin-top: 0px !important;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 18 Aug 2025 16:07:38 +0800</pubDate></item><item><title>人工智能在传统行业里的深度接入研究 ——以农牧业和教育领域为例</title><link>https://www.bh6pei.cn/?id=5</link><description>&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;/&gt;&lt;title&gt;人工智能在传统行业里的深度接入研究&lt;/title&gt;&lt;style&gt;:root {
            --primary-color: #3498db;
            --secondary-color: #2ecc71;
            --accent-color: #9b59b6;
            --text-color: #333333;
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #777777;
            --white: #ffffff;
            --section-padding: 2rem 0;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--box-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: var(--white);
            padding: 6rem 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Section Styles */
        section {
            padding: var(--section-padding);
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .section-subtitle {
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
            color: var(--accent-color);
        }

        .subsection-title {
            font-size: 1.25rem;
            margin: 1.25rem 0 0.75rem;
            color: var(--text-color);
        }

        /* Card Styles */
        .card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        /* Grid Layout */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        /* List Styles */
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        /* Quote Styles */
        blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--dark-gray);
        }

        /* Chart Container */
        .chart-container {
            margin: 2rem 0;
            padding: 1.5rem;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
        }

        /* Research Framework */
        .framework {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 2rem 0;
        }

        .framework-item {
            width: 100%;
            max-width: 400px;
            background-color: var(--light-gray);
            padding: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            border-radius: var(--border-radius);
            position: relative;
        }

        .framework-item:not(:last-child)::after {
            content: '↓';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: var(--light-gray);
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .footer-text {
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary-color);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            box-shadow: var(--box-shadow);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: var(--box-shadow);
                transform: translateY(-100%);
                transition: var(--transition);
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
                padding: 1rem 0;
                gap: 0;
            }

            nav ul li {
                padding: 1rem 1.5rem;
                border-bottom: 1px solid var(--medium-gray);
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 1.35rem;
            }

            .subsection-title {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 1.25rem;
            }

            .subsection-title {
                font-size: 1.1rem;
            }

            .card {
                padding: 1.25rem;
            }
        }&lt;/style&gt;&lt;header&gt;&lt;div class=&quot;container header-container&quot;&gt;&lt;p&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://www.bh6pei.cn/zb_users/upload/2025/08/202508121754968995900505.jpeg&quot; title=&quot;42168251f4738feed3b4690fb5ecc58f.jpeg&quot; alt=&quot;42168251f4738feed3b4690fb5ecc58f.jpeg&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;#&quot; class=&quot;logo&quot;&gt;AI行业研究&lt;/a&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;button class=&quot;nav-toggle&quot; id=&quot;navToggle&quot;&gt;☰&lt;/button&gt;&lt;/p&gt;&lt;nav id=&quot;mainNav&quot;&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#intro&quot;&gt;引言&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#literature&quot;&gt;文献综述&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#agriculture&quot;&gt;农牧业接入&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#education&quot;&gt;教育领域接入&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#comparison&quot;&gt;比较分析&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;#conclusion&quot;&gt;结论与展望&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/nav&gt;&lt;/div&gt;&lt;/header&gt;&lt;section class=&quot;hero&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h1&gt;人工智能在传统行业里的深度接入研究&lt;/h1&gt;&lt;p&gt;——以农牧业和教育领域为例&lt;/p&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;intro&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;引言&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;研究背景与意义&lt;/h3&gt;&lt;p&gt;人工智能技术正以前所未有的速度和广度渗透到各个领域，成为推动产业变革和社会发展的核心驱动力。根据Gartner的最新报告，到2025年，全球企业在人工智能解决方案上的投资将达到6000亿美元，较2023年增长近50%。&lt;/p&gt;&lt;p&gt;农牧业和教育作为国民经济和社会发展的基础性行业，其智能化转型具有重要的战略意义。在农牧业领域，面对人口增长、资源约束和气候变化等全球性挑战，人工智能技术提供了精准农业、智能养殖等创新解决方案，有望实现农业生产的高效可持续发展。在教育领域，AI技术正重塑教学模式、优化教育资源配置、促进个性化学习，为解决教育公平和质量提升问题提供了新思路。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;研究目标与方法&lt;/h3&gt;&lt;p&gt;本研究的主要目标是：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;分析人工智能在农牧业和教育领域的接入模式和应用场景&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;评估人工智能对农牧业和教育行业的影响&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;识别人工智能在传统行业深度接入过程中面临的主要挑战&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;提出促进人工智能在传统行业有效接入的策略建议&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;研究采用文献分析法、案例研究法和实证分析法相结合的方法。首先通过文献综述梳理人工智能在传统行业应用的理论基础和研究现状；其次通过国内外典型案例分析，探讨AI技术在农牧业和教育领域的具体应用模式；最后通过实证数据收集与分析，评估AI技术对传统行业的影响并识别其面临的挑战。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;literature&quot; style=&quot;background-color: var(--light-gray);&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;文献综述&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;人工智能技术发展概述&lt;/h3&gt;&lt;p&gt;人工智能是一门研究、开发用于模拟、延伸和扩展人类智能的理论、方法、技术及应用系统的新兴技术科学。近年来，随着深度学习、大数据、云计算等技术的突破性发展，人工智能进入了新的发展阶段，呈现出从感知智能向认知智能演进的趋势。&lt;/p&gt;&lt;p&gt;当前，大语言模型（LLM）、生成式AI、多模态AI等前沿技术正深刻改变各行业的发展格局。DeepSeek作为一款国产开源大模型，凭借其强大的逻辑推理能力和多场景适配性，正在成为推动各行业智能化转型的重要技术支撑。截至2025年，全球已有超过70%的大型企业开始布局人工智能战略，AI技术正从实验室走向产业应用的主战场。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;人工智能在传统行业应用的研究现状&lt;/h3&gt;&lt;p&gt;学术界对人工智能在传统行业应用的研究主要集中在以下几个方面：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;应用模式研究&lt;/strong&gt;：学者们探讨了AI技术与传统行业融合的不同模式，如技术驱动型、需求导向型、生态系统型等，并分析了不同模式的适用条件和效果。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;影响评估研究&lt;/strong&gt;：研究表明，AI技术在提高生产效率、优化资源配置、促进创新等方面具有显著效果，但同时也带来了就业结构变化、技能需求转变等挑战。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;挑战与对策研究&lt;/strong&gt;：学者们关注AI技术在传统行业应用过程中面临的技术、伦理、法律、社会接受度等方面的挑战，并提出了相应的对策建议。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;跨行业比较研究&lt;/strong&gt;：通过比较AI技术在不同传统行业的应用情况，分析其共性与特性，为行业智能化转型提供借鉴。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;研究框架&lt;/h3&gt;&lt;p&gt;基于文献综述和研究目标，本研究构建了一个&amp;quot;技术-模式-影响-挑战-对策&amp;quot;的研究框架：&lt;/p&gt;&lt;div class=&quot;framework&quot;&gt;&lt;div class=&quot;framework-item&quot;&gt;AI技术特性&lt;/div&gt;&lt;div class=&quot;framework-item&quot;&gt;接入模式&lt;/div&gt;&lt;div class=&quot;framework-item&quot;&gt;影响评估&lt;/div&gt;&lt;div class=&quot;framework-item&quot;&gt;挑战识别&lt;/div&gt;&lt;div class=&quot;framework-item&quot;&gt;对策建议&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;agriculture&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;人工智能在农牧业领域的深度接入&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;农牧业智能化发展现状&lt;/h3&gt;&lt;p&gt;全球农牧业正经历深刻的智能化变革。根据最新数据，2025年全球农业AI市场规模预计达到43亿美元，年复合增长率超过20%。&lt;/p&gt;&lt;p&gt;在澳大利亚，农业科技公司Plantd已订购了下一代由AI和视觉软件驱动的移植机器人，该系统执行种植操作的速度比人工方法快10倍，且具有更高的精度和一致性。在非洲，Kisan.ai项目采用大型语言模型提供作物管理的实时建议，展示了AI增强农业实践的潜力。在印度，AI已经深入融入农业领域，从甘蔗种植者使用微软的AI技术优化收获，到AI支持的喷灌和滴灌系统，AI正逐渐成为印度农业的核心部分。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;农牧业中AI的接入模式&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;精准农业模式&lt;/h4&gt;&lt;p&gt;利用传感器、无人机、卫星遥感和AI算法实现对农田的精细化管理。例如，美国佛罗里达大学的研究人员开发了一种AI技术，整合航空和多光谱成像与AI算法，创建肥力和养分应用地图，实现精准农业实践并优化施肥和收获物流。&lt;/p&gt;&lt;p&gt;采用精准农业技术的农场通常能提高10-20%的作物产量，同时减少15-30%的资源投入。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;智能决策支持模式&lt;/h4&gt;&lt;p&gt;基于AI算法和大数据分析，为农业生产者提供决策建议。例如，非洲的Apollo Agriculture项目利用数据和人工智能评估小农户的信用worthiness，解决了农业融资缺口问题。Kisan.ai项目利用大型语言模型为农民提供实时作物管理建议。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;农业自动化模式&lt;/h4&gt;&lt;p&gt;通过AI驱动的机器人和自动化设备，实现农业生产过程的自动化和智能化。Plantd公司的下一代移植机器人执行种植操作的速度比人工方法快10倍。AI驱动的组织培养系统、智能灌溉系统、自动收获机器人等技术也在农业生产中得到广泛应用。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;AI对农牧业的影响分析&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;生产效率提升&lt;/h4&gt;&lt;p&gt;AI技术在农牧业中的应用显著提高了生产效率和资源利用效率。Plantd公司的AI移植机器人使种植操作速度提高了10倍，同时提高了精度和一致性。AI支持的精准农业技术能够实现水资源、肥料、农药等农业投入品的精确投放，从而减少浪费。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;生产模式变革&lt;/h4&gt;&lt;p&gt;AI技术正在改变传统的农牧业生产模式，推动产业结构优化升级。AI技术促进了农业生产的规模化、集约化和标准化，提高了农业生产的组织化程度，同时催生了新型农业服务模式，如农业大数据服务、智能农机服务、农业金融服务等。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;就业结构转变&lt;/h4&gt;&lt;p&gt;AI技术的应用对农业就业结构产生了深远影响。传统的农业生产岗位需求减少，特别是那些重复性、规律性强的工作；与AI技术相关的新型岗位需求增加，如农业数据分析师、智能农机操作员、农业数字化管理人员等。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;农牧业AI深度接入面临的挑战&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;技术与基础设施&lt;/h4&gt;&lt;p&gt;AI在农牧业应用面临数据获取与处理能力不足、算法适应性和准确性有待提高、系统集成与兼容性问题等。在发展中国家，农村地区的数字基础设施普遍薄弱，网络覆盖不足，传感器和智能设备普及率低。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;经济与成本&lt;/h4&gt;&lt;p&gt;AI技术的应用需要大量的资金投入，包括硬件设备、软件系统、数据服务和人员培训等方面的成本。对于小规模农户来说，这些成本往往难以承受。虽然长期来看AI技术能够提高收益和降低成本，但短期的投资门槛较高。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;人才与技能&lt;/h4&gt;&lt;p&gt;AI在农牧业中的有效应用需要既懂农业又懂AI技术的复合型人才。目前，这类人才在全球范围内都处于短缺状态。农业从业者的数字素养和技术应用能力也普遍不足。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;数据与伦理&lt;/h4&gt;&lt;p&gt;AI技术的有效应用依赖于大量高质量的数据。在农业领域，数据隐私、数据所有权和数据共享机制等问题尚未得到妥善解决。此外，AI系统的决策过程和结果往往缺乏透明度，可能引发信任问题和伦理争议。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;education&quot; style=&quot;background-color: var(--light-gray);&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;人工智能在教育领域的深度接入&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;教育智能化发展现状&lt;/h3&gt;&lt;p&gt;教育领域的智能化转型正在全球范围内加速推进。2025年世界移动通信大会(MWC25)以&amp;quot;融合·连接·创造&amp;quot;为主题，聚焦5G、AI、物联网等前沿技术，吸引全球2700余家企业参展。在这一盛会上，浙江树人学院基于DeepSeek大模型开发的AI教学智能体&amp;quot;苗苗&amp;quot;作为&amp;quot;AI+教育&amp;quot;领域的标杆案例惊艳亮相。&lt;/p&gt;&lt;p&gt;2025年春季学期，安徽师范大学在线教学平台——赭麓学堂已全面接入DeepSeek大模型，本学期近千门在线课程同步开启&amp;quot;AI智学模式&amp;quot;。在高校领域，AI技术的应用更为广泛。西京学院传媒学院借力DeepSeek大模型构建智慧教育新生态，通过&amp;quot;AI辅导员&amp;quot;五分钟破解补考系统异常问题的经历，让AI赋能具象化。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;教育中AI的接入模式&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;智能教学辅助模式&lt;/h4&gt;&lt;p&gt;通过AI技术辅助教师完成备课、授课、作业批改、学情分析等教学环节。浙江树人学院的AI教学智能体&amp;quot;苗苗&amp;quot;集成了智能问答、动态出题、学情诊断等8大核心功能模块。该系统能够在3分钟内生成结构化教案/课件，使备课效率提升90%。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;个性化学习模式&lt;/h4&gt;&lt;p&gt;基于学生的学习数据和特点，提供个性化的学习路径、资源推荐和学习支持。赭麓学堂从教师和学生两个维度，提供多个AI教学与教辅应用，贯穿&amp;quot;课前、课中、课后&amp;quot;全流程，全方位地为师生提供个性化教与学的指导和帮助。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教育管理与决策模式&lt;/h4&gt;&lt;p&gt;AI技术在教育管理和决策领域的应用日益广泛，包括学生管理、教学评估、资源配置、教育政策制定等方面。西京学院通过&amp;quot;AI双导师系统&amp;quot;通过学情画像实现精准教学，让&amp;quot;题海战术&amp;quot;成为历史。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;AI对教育的影响分析&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教学方式变革&lt;/h4&gt;&lt;p&gt;AI技术正在深刻改变传统的教学方式和学习模式。浙江树人学院的案例显示，AI技术使备课时间从6小时缩短到40分钟，大大减轻了教师的工作负担。在课堂教学中，AI技术促进了师生互动和生生互动，使教学从传统的&amp;quot;讲授型&amp;quot;向&amp;quot;互动探究型&amp;quot;转变。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教育资源配置&lt;/h4&gt;&lt;p&gt;AI技术对教育资源配置和教育公平产生了积极影响。AI技术能够将优质教育资源数字化、网络化，通过互联网传播到教育资源匮乏的地区，缩小城乡、区域和校际之间的教育差距。梧州市第一中学通过桂教通等数字平台实现跨校课程资源共建共享，使优质教育资源能够在更大范围内流通。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教育评价创新&lt;/h4&gt;&lt;p&gt;AI技术正在推动教育评价和教育管理的创新。传统的教育评价主要基于标准化测试和主观评价，难以全面、客观地反映学生的学习情况和发展潜力。AI技术支持的教育评价能够收集和分析多维度、全过程的学习数据，实现对学生的全面评价和个性化反馈。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;教育领域AI深度接入面临的挑战&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;技术与数据&lt;/h4&gt;&lt;p&gt;AI在教育领域应用面临自然语言处理能力不足、多模态数据融合困难、个性化推荐算法精度不高、学习分析模型准确性有待提高等挑战。数据方面的挑战主要包括教育数据的质量、数量和多样性不足，数据孤岛现象严重，数据隐私和安全问题突出等。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教学适应性&lt;/h4&gt;&lt;p&gt;AI技术在教育中的应用需要与教育教学规律和特点相适应。AI系统需要理解教育教学的本质和目标，能够生成符合教育理念和教学要求的内容。此外，教师和学生对AI技术的接受度也是影响其应用效果的重要因素。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;伦理与隐私&lt;/h4&gt;&lt;p&gt;AI在教育领域的应用涉及一系列伦理和隐私问题。AI系统的决策过程和结果可能存在偏见和不公平，影响教育评价的公正性和客观性。AI系统收集和分析的大量教育数据可能涉及学生的个人隐私，需要严格保护。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;教育理论创新&lt;/h4&gt;&lt;p&gt;AI技术的应用不仅需要技术层面的创新，还需要教育理论和人才培养模式的创新。目前，教育领域的AI应用大多停留在工具层面，缺乏对教育本质和规律的深入思考，难以实现教育的根本性变革。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;comparison&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;传统行业AI深度接入的比较分析与启示&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;农牧业与教育领域AI接入的共性与差异&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;共性特征&lt;/h4&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;从传统模式向数据驱动模式转变&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;AI技术与专业知识的深度融合&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;关注个性化和精准化服务&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;面临技术、数据、人才、伦理等方面的挑战&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;差异点分析&lt;/h4&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;应用场景&lt;/strong&gt;：农牧业集中在生产环节，教育领域集中在教学、学习和管理环节&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;数据特点&lt;/strong&gt;：农牧业数据多为结构化，教育数据多为半结构化或非结构化&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;用户需求&lt;/strong&gt;：农牧业关注生产效率和经济效益，教育领域关注教学质量和教育公平&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;技术要求&lt;/strong&gt;：农牧业注重感知、控制和优化技术，教育领域注重自然语言处理和学习分析&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;传统行业AI深度接入的成功要素&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;行业知识与技术融合&lt;/h4&gt;&lt;p&gt;成功的AI应用案例都体现了行业专业知识与AI技术的深度融合。例如，浙江树人学院的AI教学智能体&amp;quot;苗苗&amp;quot;能够根据教学目标和学生特点生成高质量的教学内容，这得益于对教育教学规律的深入理解和对AI技术的灵活应用。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;数据驱动的优化机制&lt;/h4&gt;&lt;p&gt;成功的AI应用案例都建立了数据驱动的持续优化机制。例如，赭麓学堂的AI系统能够收集和分析大量教学数据，不断优化教学策略和学习路径。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;多方协作的生态系统&lt;/h4&gt;&lt;p&gt;成功的AI应用案例都离不开多方协作的生态系统。例如，印度政府的印度AI使命与盖茨基金会合作开发农业AI解决方案；梧州市第一中学教育集团通过构建AI智慧教研实践共同体，联合多所学校开展线上线下协同教研。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;用户中心的设计理念&lt;/h4&gt;&lt;p&gt;成功的AI应用案例都坚持了用户中心的设计理念。例如，Apollo Agriculture开发的AI驱动的小农户贷款评估系统，充分考虑了小农户的需求和特点，为他们提供了更加便捷和公平的金融服务。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;对传统行业AI深度接入的启示&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;分阶段推进AI应用&lt;/h4&gt;&lt;p&gt;传统行业的AI深度接入应该分阶段推进，从单点应用到全面整合，从辅助决策到自主决策。初期可以选择特定场景和环节进行试点，积累经验和数据；中期逐步扩展应用范围，实现系统集成和数据共享；后期则致力于构建全面的智能生态系统。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;注重人才培养&lt;/h4&gt;&lt;p&gt;传统行业的AI深度接入需要重视人才培养与能力建设。一方面，需要培养既懂行业专业知识又懂AI技术的复合型人才；另一方面，也需要提升现有从业人员的数字素养和技术应用能力。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;平衡技术与伦理&lt;/h4&gt;&lt;p&gt;传统行业的AI深度接入需要平衡技术创新与伦理规范。一方面，要鼓励技术创新，充分发挥AI技术的潜力；另一方面，也要建立健全的伦理框架和监管机制，确保AI系统的开发和使用符合伦理原则和法律规范。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;构建开放共享生态&lt;/h4&gt;&lt;p&gt;传统行业的AI深度接入需要构建开放共享的生态系统。一方面，需要打破数据孤岛和技术壁垒，促进数据和资源的开放共享；另一方面，也需要加强产学研合作，形成协同创新的良好局面。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;section id=&quot;conclusion&quot; style=&quot;background-color: var(--light-gray);&quot;&gt;&lt;div class=&quot;container&quot;&gt;&lt;h2 class=&quot;section-title&quot;&gt;结论与展望&lt;/h2&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;研究结论&lt;/h3&gt;&lt;p&gt;本研究通过对人工智能在农牧业和教育领域深度接入的分析，得出以下主要结论：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;AI技术在农牧业和教育领域的接入模式呈现多样化特征，体现了AI技术与行业特点的深度融合。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;AI技术的深度接入正在深刻改变传统行业的生产方式、产业结构和价值创造模式。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;AI在传统行业深度接入面临一系列挑战，包括技术与基础设施挑战、经济与成本挑战、人才与技能挑战、数据与伦理挑战等。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;传统行业AI深度接入的成功需要行业知识与技术深度融合、数据驱动的持续优化机制、多方协作的生态系统构建以及用户中心的设计理念。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;政策建议&lt;/h3&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;加强顶层设计&lt;/h4&gt;&lt;p&gt;政府应加强对传统行业AI应用的顶层设计和统筹规划，制定相关政策和标准，引导资源合理配置。例如，可以制定行业AI应用路线图，明确发展目标和重点任务；建立跨部门、跨行业的协调机制，促进数据共享和业务协同。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;加大财政支持&lt;/h4&gt;&lt;p&gt;政府应加大对传统行业AI应用的财政支持，通过专项资金、税收优惠、政府采购等方式，降低企业和用户的应用成本。同时，也应鼓励金融机构创新金融产品和服务，为AI应用提供融资支持。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;促进产学研协同&lt;/h4&gt;&lt;p&gt;政府应促进产学研协同创新，支持高校、科研院所和企业开展合作，共同解决AI应用中的技术难题。例如，可以建立产学研联合实验室，开展关键技术攻关；组织行业应用大赛，激发创新活力。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;加强人才培养&lt;/h4&gt;&lt;p&gt;政府应加强AI人才培养和传统行业从业人员的技能培训，提高全社会的数字素养和AI应用能力。例如，可以支持高校设置AI与传统行业交叉学科专业，培养复合型人才；开展面向企业和用户的AI应用培训，提升实际操作能力。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h3 class=&quot;subsection-title&quot;&gt;未来展望&lt;/h3&gt;&lt;p&gt;展望未来，传统行业AI深度接入将呈现以下发展趋势：&lt;/p&gt;&lt;div class=&quot;grid&quot;&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;从单点应用向全流程覆盖&lt;/h4&gt;&lt;p&gt;未来，AI技术将从单点应用向全流程覆盖转变，实现传统行业生产、管理、服务等环节的全面智能化。例如，在农牧业领域，AI技术将覆盖从种植到收获、从生产到销售的全产业链。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;从辅助决策向自主决策&lt;/h4&gt;&lt;p&gt;随着AI技术的不断进步，AI系统将从辅助决策向自主决策演进，在更多领域和环节发挥更加主动的作用。例如，在农牧业领域，AI系统可能会根据天气、土壤、作物生长等数据自动调整灌溉、施肥、植保等措施。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;从封闭系统向开放生态&lt;/h4&gt;&lt;p&gt;未来，AI应用将从封闭系统向开放生态发展，形成更加包容、共享、协同的AI应用环境。不同厂商的AI系统之间将实现互联互通和数据共享，形成更大规模的AI应用网络。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;card&quot;&gt;&lt;h4&gt;从技术驱动向价值驱动&lt;/h4&gt;&lt;p&gt;未来，AI应用将从技术驱动向价值驱动转变，更加注重解决行业实际问题和创造实际价值。例如，在农牧业领域，AI应用将更加关注提高产量、降低成本、保障食品安全等实际问题。&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/section&gt;&lt;footer&gt;&lt;div class=&quot;container&quot;&gt;&lt;div class=&quot;footer-content&quot;&gt;&lt;div class=&quot;footer-logo&quot;&gt;AI行业研究&lt;/div&gt;&lt;p class=&quot;footer-text&quot;&gt;人工智能在传统行业里的深度接入研究&lt;/p&gt;&lt;p class=&quot;footer-text&quot;&gt;© 2025 人工智能行业研究. 保留所有权利.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/footer&gt;&lt;p&gt;&lt;a href=&quot;#&quot; class=&quot;back-to-top&quot; id=&quot;backToTop&quot;&gt;↑&lt;/a&gt; &amp;nbsp; &amp;nbsp;&lt;/p&gt;&lt;script&gt;// Navigation toggle for mobile
        const navToggle = document.getElementById('navToggle');
        const mainNav = document.getElementById('mainNav');
        
        navToggle.addEventListener('click', () =&gt;{
            mainNav.classList.toggle('active');
        });
        
        // Smooth scrolling for navigation links
        document.querySelectorAll('nav a').forEach(anchor =&gt; {
            anchor.addEventListener('click', function(e) {
                e.preventDefault();
                
                const targetId = this.getAttribute('href');
                const targetElement = document.querySelector(targetId);
                
                window.scrollTo({
                    top: targetElement.offsetTop - 80,
                    behavior: 'smooth'
                });
                
                // Close mobile menu after clicking a link
                mainNav.classList.remove('active');
            });
        });
        
        // Back to top button
        const backToTopButton = document.getElementById('backToTop');
        
        window.addEventListener('scroll', () =&gt; {
            if (window.pageYOffset &gt; 300) {
                backToTopButton.classList.add('visible');
            } else {
                backToTopButton.classList.remove('visible');
            }
        });
        
        backToTopButton.addEventListener('click', (e) =&gt; {
            e.preventDefault();
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            });
        });&lt;/script&gt;&lt;!--!doctype--&gt;</description><pubDate>Mon, 11 Aug 2025 16:11:14 +0800</pubDate></item></channel></rss>