# 快速入门

# 正则表达式的便利

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/12 21:15
* @概述:正则表达式的便利
*/
public class Regexp_ {
public static void main(String[] args) {
//假定,编写了爬虫,从百度页面获取了如下文本
String content = "项目经历\n" +
"花朵分类识别项目(使用 YOLOv5)时间范围:2022 年 1 月 - 2022 年 3 月\n" +
"概述:在这个项目中,我使用了 YOLOv5 模型来训练一个花朵分类识别器。该模型能够接受输入的花朵图像," +
"并输出它所属的花卉种类。我在该项目中担任负责人,与一个团队合作完成了该项目。\n" +
"职责和成果:\n" +
"设计了数据集收集和清理的流程,从网络上下载了超过 4000 张不同种类的花朵图片,并进行了标注。\n" +
"使用 PyTorch 框架实现了基于 YOLOv5 的花卉分类器,并对其进行了调优,以提高准确率和降低误差率。\n" +
"在测试数据集上获得了 95% 的准确率,并将模型部署到 Raspberry Pi 上进行实时花朵检测。\n" +
"撰写了项目报告和技术文档,记录了整个项目的流程、决策和结果,并展示了模型的性能和局限性。\n" +
"技能和工具:\n" +
"计算机视觉和深度学习算法\n" +
"Python 编程及常用库,如 PyTorch、NumPy 和 OpenCV\n" +
"数据集的采集和标注\n" +
"模型调优和评估";

//需求:提取文章中的所有英文单词
//1.传统方法。使用遍历方式,代码量大,效率不高

//正则表达式:
//1.创建一个Pattern对象,模式对象,可以理解为就是一个正则表达式对象
Pattern pattern = Pattern.compile("[a-zA-Z]+");
//2.创建一个匹配器对象
//理解:就是matcher匹配器按照pattern
Matcher matcher = pattern.matcher(content);
//3.可以开始循环匹配
while (matcher.find()) {
//匹配内容,文本,放到m.group(0)
System.out.println("匹配结果:"+matcher.group(0));
}

}
}

# 提取文章中所有的数字

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 8:10
* @概述:
*/
public class Regexp_1 {
public static void main(String[] args) {
//需求:提取文章中所有的数字
String content = "项目经历\n" +
"花朵分类识别项目(使用 YOLOv5)时间范围:2022 年 1 月 - 2022 年 3 月\n" +
"概述:在这个项目中,我使用了 YOLOv5 模型来训练一个花朵分类识别器。该模型能够接受输入的花朵图像," +
"并输出它所属的花卉种类。我在该项目中担任负责人,与一个团队合作完成了该项目。\n" +
"职责和成果:\n" +
"设计了数据集收集和清理的流程,从网络上下载了超过 4000 张不同种类的花朵图片,并进行了标注。\n" +
"使用 PyTorch 框架实现了基于 YOLOv5 的花卉分类器,并对其进行了调优,以提高准确率和降低误差率。\n" +
"在测试数据集上获得了 95% 的准确率,并将模型部署到 Raspberry Pi 上进行实时花朵检测。\n" +
"撰写了项目报告和技术文档,记录了整个项目的流程、决策和结果,并展示了模型的性能和局限性。\n" +
"技能和工具:\n" +
"计算机视觉和深度学习算法\n" +
"Python 编程及常用库,如 PyTorch、NumPy 和 OpenCV\n" +
"数据集的采集和标注\n" +
"模型调优和评估";

//1.创建一个Pattern对象,模式对象,可以理解为就是一个正则表达式对象
Pattern pattern = Pattern.compile("[0-9]+");
//2.创建一个匹配器对象
//理解:就是matcher匹配器按照pattern
Matcher matcher = pattern.matcher(content);
//3.可以开始循环匹配
while (matcher.find()) {
//匹配内容,文本,放到m.group(0)
System.out.println("匹配结果:"+matcher.group(0));
}
}
}

# 提取文章中所有的英文和数字

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 8:15
* @概述:
*/
public class Regexp_2 {
public static void main(String[] args) {
//需求:提取文章中所有的英文和数字
String content = "项目经历\n" +
"花朵分类识别项目(使用 YOLOv5)时间范围:2022 年 1 月 - 2022 年 3 月\n" +
"概述:在这个项目中,我使用了 YOLOv5 模型来训练一个花朵分类识别器。该模型能够接受输入的花朵图像," +
"并输出它所属的花卉种类。我在该项目中担任负责人,与一个团队合作完成了该项目。\n" +
"职责和成果:\n" +
"设计了数据集收集和清理的流程,从网络上下载了超过 4000 张不同种类的花朵图片,并进行了标注。\n" +
"使用 PyTorch 框架实现了基于 YOLOv5 的花卉分类器,并对其进行了调优,以提高准确率和降低误差率。\n" +
"在测试数据集上获得了 95% 的准确率,并将模型部署到 Raspberry Pi 上进行实时花朵检测。\n" +
"撰写了项目报告和技术文档,记录了整个项目的流程、决策和结果,并展示了模型的性能和局限性。\n" +
"技能和工具:\n" +
"计算机视觉和深度学习算法\n" +
"Python 编程及常用库,如 PyTorch、NumPy 和 OpenCV\n" +
"数据集的采集和标注\n" +
"模型调优和评估";

//1.创建一个Pattern对象,模式对象,可以理解为就是一个正则表达式对象
Pattern pattern = Pattern.compile("([0-9]+)|([a-zA-Z]+)");
//2.创建一个匹配器对象
//理解:就是matcher匹配器按照pattern
Matcher matcher = pattern.matcher(content);
//3.可以开始循环匹配
while (matcher.find()) {
//匹配内容,文本,放到m.group(0)
System.out.println("匹配结果:"+matcher.group(0));
}
}
}

# 匹配 html 中文章的标题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 8:25
* @概述:匹配html中文章的标题
*/
public class Regexp_3 {
public static void main(String[] args) {

String content = "<div class=\"bg-wrapper\"> <!--s-frag--> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/hot-bg_50ab252a309db58b75703eab332a855f.png\"> <img class=\"default\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/default-hot-bg_9cf13a56792a4f41d4d534080f57dee6.png\"> <!--/s-frag--> </div> <header class=\"responsive-wrapper header_3wayL\"> <div class=\"c-font-normal navi-top-wrapper_20foP rel\"> <div class=\"navi-top-left_1Zuqa abs\"> <a class=\"navi-item_2z3vU\" href=\"http://news.baidu.com\" target=\"_blank\">新闻</a> <a class=\"navi-item_2z3vU\" href=\"https://www.hao123.com\" target=\"_blank\">hao123</a> <a class=\"navi-item_2z3vU\" href=\"http://map.baidu.com\" target=\"_blank\">地图</a> <a class=\"navi-item_2z3vU\" href=\"https://haokan.baidu.com\" target=\"_blank\">视频</a> <a class=\"navi-item_2z3vU\" href=\"http://tieba.baidu.com\" target=\"_blank\">贴吧</a> <a class=\"navi-item_2z3vU\" href=\"http://xueshu.baidu.com\" target=\"_blank\">学术</a> <a class=\"navi-item_2z3vU\" href=\"http://www.baidu.com/more/\" target=\"_blank\">更多</a> </div> <div class=\"navi-top-right_33qd2 abs\"> <a class=\"navi-item_2z3vU\" href=\"http://www.baidu.com/\" target=\"_blank\">百度首页</a> <div class=\"rel user-info-wrapper_3WiHw\"> <span class=\"user-image-wrapper_Gz69P\"> <img class=\"user-image_1nM2E\" src=\"https://himg.bdimg.com/sys/portrait/item/public.1.2b9062f1.iCpbocaEvDAV-yeyvzeVXg.jpg\"> </span> <span class=\"c-font-normal user-name_3qt_g\">雨眠之音</span> <div class=\"user-info-popup_1v_mi c-floating-box\"> <a href=\"http://i.baidu.com/center\" target=\"_blank\">个人中心</a> <a href=\"http://passport.baidu.com/\" target=\"_blank\">帐号设置</a> <a href=\"http://passport.baidu.com/?logout&amp;tpl=mn&amp;u=\">退出</a> </div> </div> </div> </div> <div class=\"container tab-wrap_23sEv\"> <div class=\"logo-trends-wrapper_150M5\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/homepage@2x_7926b0bf1e591ee96d2fc68b3a8a1ee0.png\"> </div> <div class=\"c-theme-color tabs-wrap_3Ac9n\"> <a href=\"/board?tab=homepage\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_homepage&quot;}\"> <span>首页</span> </a><a href=\"/board?tab=realtime\" class=\"tab-item_17MbK active\" data-click=\"{&quot;pos&quot;:&quot;tab_realtime&quot;}\"> <span>热搜</span> </a><a href=\"/board?tab=novel\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_novel&quot;}\"> <span>小说</span> </a><a href=\"/board?tab=movie\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_movie&quot;}\"> <span>电影</span> </a><a href=\"/board?tab=teleplay\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_teleplay&quot;}\"> <span>电视剧</span> </a><a href=\"/board?tab=car\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_car&quot;}\"> <span>汽车</span> </a><a href=\"/board?tab=game\" class=\"tab-item_17MbK\" data-click=\"{&quot;pos&quot;:&quot;tab_game&quot;}\"> <span>游戏</span> </a> </div> </div> <div id=\"tabs\" class=\"tabs-wrapper_7ri4o\"> <div class=\"container tabs-container__LAaf c-theme-color\"> <a href=\"/board?tab=homepage\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_homepage&quot;}\"> <span>首页</span> </a><a href=\"/board?tab=realtime\" class=\"tab_3QhDq active\" data-click=\"{&quot;pos&quot;:&quot;tab_realtime&quot;}\"> <span>热搜</span> <div class=\"active-underline-wrapper_Lv1CQ c-theme-color-bg\"></div> </a><a href=\"/board?tab=novel\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_novel&quot;}\"> <span>小说</span> </a><a href=\"/board?tab=movie\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_movie&quot;}\"> <span>电影</span> </a><a href=\"/board?tab=teleplay\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_teleplay&quot;}\"> <span>电视剧</span> </a><a href=\"/board?tab=car\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_car&quot;}\"> <span>汽车</span> </a><a href=\"/board?tab=game\" class=\"tab_3QhDq\" data-click=\"{&quot;pos&quot;:&quot;tab_game&quot;}\"> <span>游戏</span> </a> </div> </div> </header> <main class=\"rel container_2VTvm\"> <div class=\"responsive-wrapper left-side-wrapper_1kYr7\"> <div class=\"container rel\"> <div class=\"left-side_1rpOJ c-font-normal\"> <div class=\"abs left-side-bg-wrapper_23qvy\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/hot_ddfea2a95156c9143dfb5fe2b28503f8.png\"> </div> <div class=\"side-title_1wfo5 c-theme-color\"> 热搜榜 </div> <!--s-frag--> <div class=\"tags-wrap_InWap\"> <div class=\"c-color-text title_bOM2Q\"> 类型 </div> <div class=\"tags_1mjZF\"> <div class=\"tag-item_2erEC active_1oD--\"> 全部类型 </div> </div> </div> <!--/s-frag--> </div> </div> </div> <div class=\"container right-container_2EFJr\"> <div class=\"container-bg_lQ801\"> <div class=\"path-wrapper_3euWM\"> <span class=\"c-font-normal c-color-gray2\"> 热搜榜 </span><span class=\"c-font-normal c-color-gray2\"> / 全部类型 </span> </div> <div style=\"margin-bottom:20px\"> <div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%86%9C%E6%9D%91%E7%89%B9%E8%89%B2%E4%BA%A7%E4%B8%9A%E5%89%8D%E6%99%AF%E5%B9%BF%E9%98%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg1\"> <img class=\"top-icon_15tUE\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/whitet@2x_0fd85d7c9f42d73571bd1168903afb74.png\" alt=\"true\"> </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/80ac1df877e22b24f0d25bca2b19b751?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4949320 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%86%9C%E6%9D%91%E7%89%B9%E8%89%B2%E4%BA%A7%E4%B8%9A%E5%89%8D%E6%99%AF%E5%B9%BF%E9%98%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 农村特色产业前景广阔 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 习近平指出,广东省高州市根子镇柏桥村是“荔枝之乡”,发展荔枝种植有特色有优势,是促进共同富裕、推动乡村振兴的有效举措,农... <a href=\"https://www.baidu.com/s?wd=%E5%86%9C%E6%9D%91%E7%89%B9%E8%89%B2%E4%BA%A7%E4%B8%9A%E5%89%8D%E6%99%AF%E5%B9%BF%E9%98%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 习近平指出,广东省高州市根子镇柏桥村是“荔枝之乡”,发展荔枝种植有特色有优势,是促进共同富裕、推动乡村振兴的有效举措,农村特色产业前景广阔。 <a href=\"https://www.baidu.com/s?wd=%E5%86%9C%E6%9D%91%E7%89%B9%E8%89%B2%E4%BA%A7%E4%B8%9A%E5%89%8D%E6%99%AF%E5%B9%BF%E9%98%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E8%A7%A3%E6%94%BE%E5%86%9B%E5%9B%9E%E5%91%9B%E5%8F%B0%E5%86%9B%EF%BC%9A%E6%9C%89%E7%A7%8D%E5%BC%80%E7%81%AB%E6%8E%A7%E9%9B%B7%E8%BE%BE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg1\"> 1 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/6a5dd59679bcdd7bcea1b64b626a4523?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4998184 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E8%A7%A3%E6%94%BE%E5%86%9B%E5%9B%9E%E5%91%9B%E5%8F%B0%E5%86%9B%EF%BC%9A%E6%9C%89%E7%A7%8D%E5%BC%80%E7%81%AB%E6%8E%A7%E9%9B%B7%E8%BE%BE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 解放军回呛台军:有种开火控雷达 </div> <div class=\"c-text c-text-hot_3ZhI9 hot-tag_1G080\"> 热 </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 4月12日,有岛内军迷录下解放军霸气回呛台军机的片段。台媒宣称的内容为:有种开火,不然挨揍。而解放军回呛的实际内容为:有... <a href=\"https://www.baidu.com/s?wd=%E8%A7%A3%E6%94%BE%E5%86%9B%E5%9B%9E%E5%91%9B%E5%8F%B0%E5%86%9B%EF%BC%9A%E6%9C%89%E7%A7%8D%E5%BC%80%E7%81%AB%E6%8E%A7%E9%9B%B7%E8%BE%BE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 4月12日,有岛内军迷录下解放军霸气回呛台军机的片段。台媒宣称的内容为:有种开火,不然挨揍。而解放军回呛的实际内容为:有种开火控雷达照我。 <a href=\"https://www.baidu.com/s?wd=%E8%A7%A3%E6%94%BE%E5%86%9B%E5%9B%9E%E5%91%9B%E5%8F%B0%E5%86%9B%EF%BC%9A%E6%9C%89%E7%A7%8D%E5%BC%80%E7%81%AB%E6%8E%A7%E9%9B%B7%E8%BE%BE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%88%90%E9%83%BD%E7%94%B3%E5%8A%9E2036%E5%B9%B4%E5%A5%A5%E8%BF%90%E4%BC%9A%EF%BC%9F%E5%AE%98%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg2\"> 2 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/5e723286cad5dc197a576cd2f9296767?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4833353 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%88%90%E9%83%BD%E7%94%B3%E5%8A%9E2036%E5%B9%B4%E5%A5%A5%E8%BF%90%E4%BC%9A%EF%BC%9F%E5%AE%98%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 成都申办2036年奥运会?官方回应 </div> <div class=\"c-text c-text-hot_3ZhI9 hot-tag_1G080\"> 热 </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 4月12日,有自媒体发布文章,公布2036年“成都奥运会”申办会徽,引发网友热议。对此,四川省体育局回复:“官方没有发布... <a href=\"https://www.baidu.com/s?wd=%E6%88%90%E9%83%BD%E7%94%B3%E5%8A%9E2036%E5%B9%B4%E5%A5%A5%E8%BF%90%E4%BC%9A%EF%BC%9F%E5%AE%98%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 4月12日,有自媒体发布文章,公布2036年“成都奥运会”申办会徽,引发网友热议。对此,四川省体育局回复:“官方没有发布就是没有。” <a href=\"https://www.baidu.com/s?wd=%E6%88%90%E9%83%BD%E7%94%B3%E5%8A%9E2036%E5%B9%B4%E5%A5%A5%E8%BF%90%E4%BC%9A%EF%BC%9F%E5%AE%98%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E5%8A%A0%E9%80%9F%E6%8F%90%E6%8C%AF%E6%B6%88%E8%B4%B9+%E5%B8%82%E5%9C%BA%E5%9B%9E%E6%9A%96%E5%90%B8%E5%BC%95%E4%B8%96%E7%95%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg3\"> 3 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/89746a1e5905e6dcdf7c866d1fbfa986?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4708534 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E5%8A%A0%E9%80%9F%E6%8F%90%E6%8C%AF%E6%B6%88%E8%B4%B9+%E5%B8%82%E5%9C%BA%E5%9B%9E%E6%9A%96%E5%90%B8%E5%BC%95%E4%B8%96%E7%95%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 中国加速提振消费 市场回暖吸引世界 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 旅游平台预测,即将到来的五一假期旅游人次有望突破2019年同期水平,达到2亿人次新高。各部门各地政策持续发力提振消费,市... <a href=\"https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E5%8A%A0%E9%80%9F%E6%8F%90%E6%8C%AF%E6%B6%88%E8%B4%B9+%E5%B8%82%E5%9C%BA%E5%9B%9E%E6%9A%96%E5%90%B8%E5%BC%95%E4%B8%96%E7%95%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 旅游平台预测,即将到来的五一假期旅游人次有望突破2019年同期水平,达到2亿人次新高。各部门各地政策持续发力提振消费,市场逐步回暖吸引世界。 <a href=\"https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E5%8A%A0%E9%80%9F%E6%8F%90%E6%8C%AF%E6%B6%88%E8%B4%B9+%E5%B8%82%E5%9C%BA%E5%9B%9E%E6%9A%96%E5%90%B8%E5%BC%95%E4%B8%96%E7%95%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%AE%89%E5%BE%BD%E7%A5%96%E5%AD%99%E5%A4%B1%E8%B8%AA%E6%97%B6%E8%B7%9D%E7%A6%BB%E5%AE%B6%E4%BA%BA%E4%BB%8510%E5%A4%9A%E7%B1%B3&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg4\"> 4 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/87664331283bed6b5f5fd4c100ae7fbe?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4600495 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%AE%89%E5%BE%BD%E7%A5%96%E5%AD%99%E5%A4%B1%E8%B8%AA%E6%97%B6%E8%B7%9D%E7%A6%BB%E5%AE%B6%E4%BA%BA%E4%BB%8510%E5%A4%9A%E7%B1%B3&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 安徽祖孙失踪时距离家人仅10多米 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,安徽一对祖孙失踪至今无音讯,引发关注。据老人的儿子介绍,老人当时跟正在麦田里拔草的老伴说带着孙子去路边烧垃圾,地点... <a href=\"https://www.baidu.com/s?wd=%E5%AE%89%E5%BE%BD%E7%A5%96%E5%AD%99%E5%A4%B1%E8%B8%AA%E6%97%B6%E8%B7%9D%E7%A6%BB%E5%AE%B6%E4%BA%BA%E4%BB%8510%E5%A4%9A%E7%B1%B3&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,安徽一对祖孙失踪至今无音讯,引发关注。据老人的儿子介绍,老人当时跟正在麦田里拔草的老伴说带着孙子去路边烧垃圾,地点距离麦田不过十多米。 <a href=\"https://www.baidu.com/s?wd=%E5%AE%89%E5%BE%BD%E7%A5%96%E5%AD%99%E5%A4%B1%E8%B8%AA%E6%97%B6%E8%B7%9D%E7%A6%BB%E5%AE%B6%E4%BA%BA%E4%BB%8510%E5%A4%9A%E7%B1%B3&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%A9%BA%E5%A7%90%E9%A3%9E%E6%9C%BA%E4%B8%8A%E6%8E%A8%E9%94%80%E5%95%86%E5%93%81%E9%95%BF%E8%BE%BE40%E5%88%86%E9%92%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg5\"> 5 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/d0c3c6ee1400d80cb34631d96daca230?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4503074 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%A9%BA%E5%A7%90%E9%A3%9E%E6%9C%BA%E4%B8%8A%E6%8E%A8%E9%94%80%E5%95%86%E5%93%81%E9%95%BF%E8%BE%BE40%E5%88%86%E9%92%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 空姐飞机上推销商品长达40分钟 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,旅客王女士投诉乘坐首都航空的航班时遭遇机上推销商品时间长达40分钟。对此民航监管部门的工作人员表示:这不属于民航业... <a href=\"https://www.baidu.com/s?wd=%E7%A9%BA%E5%A7%90%E9%A3%9E%E6%9C%BA%E4%B8%8A%E6%8E%A8%E9%94%80%E5%95%86%E5%93%81%E9%95%BF%E8%BE%BE40%E5%88%86%E9%92%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,旅客王女士投诉乘坐首都航空的航班时遭遇机上推销商品时间长达40分钟。对此民航监管部门的工作人员表示:这不属于民航业内违规违法行为。 <a href=\"https://www.baidu.com/s?wd=%E7%A9%BA%E5%A7%90%E9%A3%9E%E6%9C%BA%E4%B8%8A%E6%8E%A8%E9%94%80%E5%95%86%E5%93%81%E9%95%BF%E8%BE%BE40%E5%88%86%E9%92%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%BD%93%E5%8D%B0%E5%BA%A6%E5%A5%B3%E6%80%A7%E5%BC%80%E5%A7%8B%E4%B8%8D%E6%84%BF%E7%94%9F%E5%A8%83&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg6\"> 6 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/8c5dc7532b49a32e84624bd71141eeb7?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4460637 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%BD%93%E5%8D%B0%E5%BA%A6%E5%A5%B3%E6%80%A7%E5%BC%80%E5%A7%8B%E4%B8%8D%E6%84%BF%E7%94%9F%E5%A8%83&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 当印度女性开始不愿生娃 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> 如今印度总和生育率已降至2.1以下,低于维持人口所需的生育更替水平。印度人口专家认为,该国仍应继续采取措施以降低生育率。 <a href=\"https://www.baidu.com/s?wd=%E5%BD%93%E5%8D%B0%E5%BA%A6%E5%A5%B3%E6%80%A7%E5%BC%80%E5%A7%8B%E4%B8%8D%E6%84%BF%E7%94%9F%E5%A8%83&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 如今印度总和生育率已降至2.1以下,低于维持人口所需的生育更替水平。印度人口专家认为,该国仍应继续采取措施以降低生育率。 <a href=\"https://www.baidu.com/s?wd=%E5%BD%93%E5%8D%B0%E5%BA%A6%E5%A5%B3%E6%80%A7%E5%BC%80%E5%A7%8B%E4%B8%8D%E6%84%BF%E7%94%9F%E5%A8%83&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%A6%87%E5%A5%B3%E6%8A%A5%E7%A7%B0%E6%96%87%E5%8C%96%E7%BB%9D%E4%B8%8D%E8%83%BD%E5%8F%8D%E5%90%91%E9%80%86%E6%B5%81&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg7\"> 7 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4367453 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%A6%87%E5%A5%B3%E6%8A%A5%E7%A7%B0%E6%96%87%E5%8C%96%E7%BB%9D%E4%B8%8D%E8%83%BD%E5%8F%8D%E5%90%91%E9%80%86%E6%B5%81&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 妇女报称文化绝不能反向逆流 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%A6%87%E5%A5%B3%E6%8A%A5%E7%A7%B0%E6%96%87%E5%8C%96%E7%BB%9D%E4%B8%8D%E8%83%BD%E5%8F%8D%E5%90%91%E9%80%86%E6%B5%81&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%A6%87%E5%A5%B3%E6%8A%A5%E7%A7%B0%E6%96%87%E5%8C%96%E7%BB%9D%E4%B8%8D%E8%83%BD%E5%8F%8D%E5%90%91%E9%80%86%E6%B5%81&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E9%AB%98%E6%A0%A1%E5%9B%9E%E5%BA%94%E5%89%AF%E4%B9%A6%E8%AE%B0%E6%8B%9F%E5%BD%95%E5%8F%96%E4%B8%BA%E6%9C%AC%E6%A0%A1%E5%8D%9A%E5%A3%AB&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg8\"> 8 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/79facc42911b9e7f8dfac7af4baf3b99?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4296293 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E9%AB%98%E6%A0%A1%E5%9B%9E%E5%BA%94%E5%89%AF%E4%B9%A6%E8%AE%B0%E6%8B%9F%E5%BD%95%E5%8F%96%E4%B8%BA%E6%9C%AC%E6%A0%A1%E5%8D%9A%E5%A3%AB&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 高校回应副书记拟录取为本校博士 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 日前,有网友称“青海民族大学党委副书记拟录取为该校民族学博士研究生”,引发网友关注。12日,高校回应:他只是一名考生,通... <a href=\"https://www.baidu.com/s?wd=%E9%AB%98%E6%A0%A1%E5%9B%9E%E5%BA%94%E5%89%AF%E4%B9%A6%E8%AE%B0%E6%8B%9F%E5%BD%95%E5%8F%96%E4%B8%BA%E6%9C%AC%E6%A0%A1%E5%8D%9A%E5%A3%AB&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 日前,有网友称“青海民族大学党委副书记拟录取为该校民族学博士研究生”,引发网友关注。12日,高校回应:他只是一名考生,通过了资格审查。 <a href=\"https://www.baidu.com/s?wd=%E9%AB%98%E6%A0%A1%E5%9B%9E%E5%BA%94%E5%89%AF%E4%B9%A6%E8%AE%B0%E6%8B%9F%E5%BD%95%E5%8F%96%E4%B8%BA%E6%9C%AC%E6%A0%A1%E5%8D%9A%E5%A3%AB&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%99%BD%E7%8E%89%E5%85%B0%E5%A5%96%E3%80%8A%E7%8B%82%E9%A3%99%E3%80%8B%E5%BC%A0%E9%A2%82%E6%96%87%E5%91%BC%E5%A3%B0%E6%9C%80%E9%AB%98&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg9\"> 9 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4145065 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%99%BD%E7%8E%89%E5%85%B0%E5%A5%96%E3%80%8A%E7%8B%82%E9%A3%99%E3%80%8B%E5%BC%A0%E9%A2%82%E6%96%87%E5%91%BC%E5%A3%B0%E6%9C%80%E9%AB%98&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 白玉兰奖《狂飙》张颂文呼声最高 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E7%99%BD%E7%8E%89%E5%85%B0%E5%A5%96%E3%80%8A%E7%8B%82%E9%A3%99%E3%80%8B%E5%BC%A0%E9%A2%82%E6%96%87%E5%91%BC%E5%A3%B0%E6%9C%80%E9%AB%98&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E7%99%BD%E7%8E%89%E5%85%B0%E5%A5%96%E3%80%8A%E7%8B%82%E9%A3%99%E3%80%8B%E5%BC%A0%E9%A2%82%E6%96%87%E5%91%BC%E5%A3%B0%E6%9C%80%E9%AB%98&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%A4%BE%E4%BF%9D%E6%8C%82%E9%9D%A0%E4%BB%A3%E7%BC%B4%E5%B7%B2%E8%A2%AB%E6%98%8E%E7%A1%AE%E4%B8%BA%E8%BF%9D%E6%B3%95&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg10\"> 10 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 4040060 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%A4%BE%E4%BF%9D%E6%8C%82%E9%9D%A0%E4%BB%A3%E7%BC%B4%E5%B7%B2%E8%A2%AB%E6%98%8E%E7%A1%AE%E4%B8%BA%E8%BF%9D%E6%B3%95&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 社保挂靠代缴已被明确为违法 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E7%A4%BE%E4%BF%9D%E6%8C%82%E9%9D%A0%E4%BB%A3%E7%BC%B4%E5%B7%B2%E8%A2%AB%E6%98%8E%E7%A1%AE%E4%B8%BA%E8%BF%9D%E6%B3%95&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E7%A4%BE%E4%BF%9D%E6%8C%82%E9%9D%A0%E4%BB%A3%E7%BC%B4%E5%B7%B2%E8%A2%AB%E6%98%8E%E7%A1%AE%E4%B8%BA%E8%BF%9D%E6%B3%95&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%8C%97%E4%BA%AC%E4%BA%BA%E5%9D%87%E5%AD%98%E6%AC%BE%E5%B7%B2%E6%8E%A5%E8%BF%9127%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg11\"> 11 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/51ecf7ecf39a3ed4c94ca2bb61b7b67d?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3929492 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%8C%97%E4%BA%AC%E4%BA%BA%E5%9D%87%E5%AD%98%E6%AC%BE%E5%B7%B2%E6%8E%A5%E8%BF%9127%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 北京人均存款已接近27万 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 4月11日,央行公布了2023年一季度的金融数据,一季度人民币存款增加15.39万亿元,北京人均存款近27万,上海人均存... <a href=\"https://www.baidu.com/s?wd=%E5%8C%97%E4%BA%AC%E4%BA%BA%E5%9D%87%E5%AD%98%E6%AC%BE%E5%B7%B2%E6%8E%A5%E8%BF%9127%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 4月11日,央行公布了2023年一季度的金融数据,一季度人民币存款增加15.39万亿元,北京人均存款近27万,上海人均存款超过21万元。 <a href=\"https://www.baidu.com/s?wd=%E5%8C%97%E4%BA%AC%E4%BA%BA%E5%9D%87%E5%AD%98%E6%AC%BE%E5%B7%B2%E6%8E%A5%E8%BF%9127%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%8F%8B%E5%9B%9E%E5%BA%94%E4%B8%93%E5%AE%B6%E5%82%AC%E7%94%9F%E8%A8%80%E8%AE%BA%3A%E5%BB%BA%E8%AE%AE%E5%A4%9A%E7%94%9F%E5%B0%91%E8%AF%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg12\"> 12 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/32a60e5e73e8067df88202b04bb24579?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3874033 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%8F%8B%E5%9B%9E%E5%BA%94%E4%B8%93%E5%AE%B6%E5%82%AC%E7%94%9F%E8%A8%80%E8%AE%BA%3A%E5%BB%BA%E8%AE%AE%E5%A4%9A%E7%94%9F%E5%B0%91%E8%AF%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 网友回应专家催生言论:建议多生少说 </div> <div class=\"c-text c-text-hot_3ZhI9 hot-tag_1G080\"> 热 </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日有专家表示,子女是长周期的消费品,是可以带来长久回报的耐用消费品,价值超过你购买其他消费品的价值。对此,网友回应称:... <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%8F%8B%E5%9B%9E%E5%BA%94%E4%B8%93%E5%AE%B6%E5%82%AC%E7%94%9F%E8%A8%80%E8%AE%BA%3A%E5%BB%BA%E8%AE%AE%E5%A4%9A%E7%94%9F%E5%B0%91%E8%AF%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日有专家表示,子女是长周期的消费品,是可以带来长久回报的耐用消费品,价值超过你购买其他消费品的价值。对此,网友回应称:建议多生少说。 <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%8F%8B%E5%9B%9E%E5%BA%94%E4%B8%93%E5%AE%B6%E5%82%AC%E7%94%9F%E8%A8%80%E8%AE%BA%3A%E5%BB%BA%E8%AE%AE%E5%A4%9A%E7%94%9F%E5%B0%91%E8%AF%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%BE%8E%E5%9C%A8%E4%B9%8C%E5%BB%BA%E4%BA%8650%E5%A4%9A%E4%B8%AA%E7%94%9F%E7%89%A9%E5%AE%9E%E9%AA%8C%E5%AE%A4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg13\"> 13 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3763666 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%BE%8E%E5%9C%A8%E4%B9%8C%E5%BB%BA%E4%BA%8650%E5%A4%9A%E4%B8%AA%E7%94%9F%E7%89%A9%E5%AE%9E%E9%AA%8C%E5%AE%A4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 美在乌建了50多个生物实验室 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E7%BE%8E%E5%9C%A8%E4%B9%8C%E5%BB%BA%E4%BA%8650%E5%A4%9A%E4%B8%AA%E7%94%9F%E7%89%A9%E5%AE%9E%E9%AA%8C%E5%AE%A4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E7%BE%8E%E5%9C%A8%E4%B9%8C%E5%BB%BA%E4%BA%8650%E5%A4%9A%E4%B8%AA%E7%94%9F%E7%89%A9%E5%AE%9E%E9%AA%8C%E5%AE%A4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%B6%88%E5%A4%B1%E7%9A%84%E7%BD%91%E7%BA%A6%E8%BD%A6%E5%85%B1%E4%BA%AB%E6%B1%BD%E8%BD%A6+%E5%9C%A8%E8%BF%99%E9%87%8C%E8%AE%BA%E6%96%A4%E5%8D%96&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg14\"> 14 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/7e0ba965868af304af90f8e8b42d7102?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3604038 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%B6%88%E5%A4%B1%E7%9A%84%E7%BD%91%E7%BA%A6%E8%BD%A6%E5%85%B1%E4%BA%AB%E6%B1%BD%E8%BD%A6+%E5%9C%A8%E8%BF%99%E9%87%8C%E8%AE%BA%E6%96%A4%E5%8D%96&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 消失的网约车共享汽车 在这里论斤卖 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 一些城市的角落里,汽车“坟场”如同一块“牛皮癣”,堆积在那里的“僵尸”网约车、共享汽车,滞销的网红新能源汽车,讲述了风口... <a href=\"https://www.baidu.com/s?wd=%E6%B6%88%E5%A4%B1%E7%9A%84%E7%BD%91%E7%BA%A6%E8%BD%A6%E5%85%B1%E4%BA%AB%E6%B1%BD%E8%BD%A6+%E5%9C%A8%E8%BF%99%E9%87%8C%E8%AE%BA%E6%96%A4%E5%8D%96&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 一些城市的角落里,汽车“坟场”如同一块“牛皮癣”,堆积在那里的“僵尸”网约车、共享汽车,滞销的网红新能源汽车,讲述了风口背后另一些故事。 <a href=\"https://www.baidu.com/s?wd=%E6%B6%88%E5%A4%B1%E7%9A%84%E7%BD%91%E7%BA%A6%E8%BD%A6%E5%85%B1%E4%BA%AB%E6%B1%BD%E8%BD%A6+%E5%9C%A8%E8%BF%99%E9%87%8C%E8%AE%BA%E6%96%A4%E5%8D%96&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%B9%BF%E5%B7%9E%E4%B8%80%E9%AB%98%E6%A0%A1%E4%B8%AD%E5%BF%83%E6%B9%96%E5%8F%91%E7%8E%B0%E9%B3%84%E9%9B%80%E9%B3%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg15\"> 15 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3561022 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%B9%BF%E5%B7%9E%E4%B8%80%E9%AB%98%E6%A0%A1%E4%B8%AD%E5%BF%83%E6%B9%96%E5%8F%91%E7%8E%B0%E9%B3%84%E9%9B%80%E9%B3%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 广州一高校中心湖发现鳄雀鳝 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%B9%BF%E5%B7%9E%E4%B8%80%E9%AB%98%E6%A0%A1%E4%B8%AD%E5%BF%83%E6%B9%96%E5%8F%91%E7%8E%B0%E9%B3%84%E9%9B%80%E9%B3%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%B9%BF%E5%B7%9E%E4%B8%80%E9%AB%98%E6%A0%A1%E4%B8%AD%E5%BF%83%E6%B9%96%E5%8F%91%E7%8E%B0%E9%B3%84%E9%9B%80%E9%B3%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%9028%E4%B8%87%E4%B9%B0%E4%B8%A4%E8%BD%A6%E4%BD%8D%E6%B6%82%E9%B8%A6%E8%A2%AB%E8%A6%81%E6%B1%82%E5%A4%8D%E5%8E%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg16\"> 16 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3473895 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%9028%E4%B8%87%E4%B9%B0%E4%B8%A4%E8%BD%A6%E4%BD%8D%E6%B6%82%E9%B8%A6%E8%A2%AB%E8%A6%81%E6%B1%82%E5%A4%8D%E5%8E%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> " +
"女子28万买两车位涂鸦被要求复原 </div>" ;
// " <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%9028%E4%B8%87%E4%B9%B0%E4%B8%A4%E8%BD%A6%E4%BD%8D%E6%B6%82%E9%B8%A6%E8%A2%AB%E8%A6%81%E6%B1%82%E5%A4%8D%E5%8E%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%9028%E4%B8%87%E4%B9%B0%E4%B8%A4%E8%BD%A6%E4%BD%8D%E6%B6%82%E9%B8%A6%E8%A2%AB%E8%A6%81%E6%B1%82%E5%A4%8D%E5%8E%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%9D%A8%E7%B4%AB%E7%90%BC%E5%B8%A6%E5%B0%8F%E9%87%91%E4%BA%BA%E6%89%AB%E5%A2%93&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg17\"> 17 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3393362 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%A8%E7%B4%AB%E7%90%BC%E5%B8%A6%E5%B0%8F%E9%87%91%E4%BA%BA%E6%89%AB%E5%A2%93&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 杨紫琼带小金人扫墓 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%A8%E7%B4%AB%E7%90%BC%E5%B8%A6%E5%B0%8F%E9%87%91%E4%BA%BA%E6%89%AB%E5%A2%93&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%A8%E7%B4%AB%E7%90%BC%E5%B8%A6%E5%B0%8F%E9%87%91%E4%BA%BA%E6%89%AB%E5%A2%93&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%84%BF%E5%87%BA%E9%A6%96%E4%BB%98%E6%AF%8D%E4%BA%B2%E4%B9%B0%E6%88%BF%E5%90%8E%E6%8A%8A%E4%BA%A7%E6%9D%83%E7%BB%99%E5%84%BF%E5%AD%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg18\"> 18 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/e94205fbcd2440c5f677e4a3689b3c84?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3263201 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%84%BF%E5%87%BA%E9%A6%96%E4%BB%98%E6%AF%8D%E4%BA%B2%E4%B9%B0%E6%88%BF%E5%90%8E%E6%8A%8A%E4%BA%A7%E6%9D%83%E7%BB%99%E5%84%BF%E5%AD%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 女儿出首付母亲买房后把产权给儿子 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,福州连江法院公布一起案例。一母亲买了一套别墅,女儿出了16万首付,母亲瞒着女儿将产权过户给弟弟,之后弟弟起诉让姐姐... <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%84%BF%E5%87%BA%E9%A6%96%E4%BB%98%E6%AF%8D%E4%BA%B2%E4%B9%B0%E6%88%BF%E5%90%8E%E6%8A%8A%E4%BA%A7%E6%9D%83%E7%BB%99%E5%84%BF%E5%AD%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,福州连江法院公布一起案例。一母亲买了一套别墅,女儿出了16万首付,母亲瞒着女儿将产权过户给弟弟,之后弟弟起诉让姐姐搬离。 <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%84%BF%E5%87%BA%E9%A6%96%E4%BB%98%E6%AF%8D%E4%BA%B2%E4%B9%B0%E6%88%BF%E5%90%8E%E6%8A%8A%E4%BA%A7%E6%9D%83%E7%BB%99%E5%84%BF%E5%AD%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%92%B8%E4%B8%B2%E5%87%BA%E5%9C%88+%E2%80%9C%E9%B2%81C%E2%80%9D%E7%81%AB%E4%BA%86&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg19\"> 19 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/efb77f9aa5195830fce2fa10343c1a8a?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3154384 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%92%B8%E4%B8%B2%E5%87%BA%E5%9C%88+%E2%80%9C%E9%B2%81C%E2%80%9D%E7%81%AB%E4%BA%86&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 撸串出圈 “鲁C”火了 </div> <div class=\"c-text c-text-hot_3ZhI9 hot-tag_1G080\"> 热 </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,“下葱量”第一、“耗饼量”惊人的淄博烧烤火出圈,已经率先进入到充满孜然味的夏天。原来鲁C(淄博车牌代码)的正确读音... <a href=\"https://www.baidu.com/s?wd=%E6%92%B8%E4%B8%B2%E5%87%BA%E5%9C%88+%E2%80%9C%E9%B2%81C%E2%80%9D%E7%81%AB%E4%BA%86&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,“下葱量”第一、“耗饼量”惊人的淄博烧烤火出圈,已经率先进入到充满孜然味的夏天。原来鲁C(淄博车牌代码)的正确读音,其实是“撸串”? <a href=\"https://www.baidu.com/s?wd=%E6%92%B8%E4%B8%B2%E5%87%BA%E5%9C%88+%E2%80%9C%E9%B2%81C%E2%80%9D%E7%81%AB%E4%BA%86&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%94%B5%E5%95%86%E4%B8%BB%E6%92%AD%E5%B9%B4%E8%96%AA%E5%8D%83%E4%B8%87%E9%99%8D%E5%88%B0%E5%B9%B4%E8%96%AA%E7%99%BE%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg20\"> 20 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 3009057 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%94%B5%E5%95%86%E4%B8%BB%E6%92%AD%E5%B9%B4%E8%96%AA%E5%8D%83%E4%B8%87%E9%99%8D%E5%88%B0%E5%B9%B4%E8%96%AA%E7%99%BE%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 电商主播年薪千万降到年薪百万 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E7%94%B5%E5%95%86%E4%B8%BB%E6%92%AD%E5%B9%B4%E8%96%AA%E5%8D%83%E4%B8%87%E9%99%8D%E5%88%B0%E5%B9%B4%E8%96%AA%E7%99%BE%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E7%94%B5%E5%95%86%E4%B8%BB%E6%92%AD%E5%B9%B4%E8%96%AA%E5%8D%83%E4%B8%87%E9%99%8D%E5%88%B0%E5%B9%B4%E8%96%AA%E7%99%BE%E4%B8%87&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%96%91%E2%80%9C%E4%B9%8C%E6%88%98%E4%BF%98%E8%A2%AB%E6%96%A9%E9%A6%96%E2%80%9D%E7%94%BB%E9%9D%A2%E6%B5%81%E5%87%BA&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg21\"> 21 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/c44b26e867438252e2471ff30a711d83?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2919273 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%96%91%E2%80%9C%E4%B9%8C%E6%88%98%E4%BF%98%E8%A2%AB%E6%96%A9%E9%A6%96%E2%80%9D%E7%94%BB%E9%9D%A2%E6%B5%81%E5%87%BA&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 疑“乌战俘被斩首”画面流出 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 一段网传疑似是“乌克兰战俘被斩首”的视频再次成为俄乌冲突中的“罗生门”。针对视频内容,泽连斯基指责俄是野兽,俄方则表示视... <a href=\"https://www.baidu.com/s?wd=%E7%96%91%E2%80%9C%E4%B9%8C%E6%88%98%E4%BF%98%E8%A2%AB%E6%96%A9%E9%A6%96%E2%80%9D%E7%94%BB%E9%9D%A2%E6%B5%81%E5%87%BA&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 一段网传疑似是“乌克兰战俘被斩首”的视频再次成为俄乌冲突中的“罗生门”。针对视频内容,泽连斯基指责俄是野兽,俄方则表示视频的真实性需要核实。 <a href=\"https://www.baidu.com/s?wd=%E7%96%91%E2%80%9C%E4%B9%8C%E6%88%98%E4%BF%98%E8%A2%AB%E6%96%A9%E9%A6%96%E2%80%9D%E7%94%BB%E9%9D%A2%E6%B5%81%E5%87%BA&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%90%E7%96%AF%E7%8B%82%E7%BD%91%E4%B8%8A%E8%B4%AD%E7%89%A9%E7%A1%AE%E8%AF%8A%E5%B8%95%E9%87%91%E6%A3%AE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg22\"> 22 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2804119 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%90%E7%96%AF%E7%8B%82%E7%BD%91%E4%B8%8A%E8%B4%AD%E7%89%A9%E7%A1%AE%E8%AF%8A%E5%B8%95%E9%87%91%E6%A3%AE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 女子疯狂网上购物确诊帕金森 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%90%E7%96%AF%E7%8B%82%E7%BD%91%E4%B8%8A%E8%B4%AD%E7%89%A9%E7%A1%AE%E8%AF%8A%E5%B8%95%E9%87%91%E6%A3%AE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%A5%B3%E5%AD%90%E7%96%AF%E7%8B%82%E7%BD%91%E4%B8%8A%E8%B4%AD%E7%89%A9%E7%A1%AE%E8%AF%8A%E5%B8%95%E9%87%91%E6%A3%AE&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%89%8D%E5%9B%BD%E8%84%9A%E7%A7%B0%E6%9C%88%E8%96%AA%E4%B8%80%E4%B8%87%E5%A4%9A%E4%B8%8D%E5%A4%9F%E4%BA%A4%E6%88%BF%E7%A7%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg23\"> 23 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/8120057e8046c7784ad87294639a91b2?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2763191 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%89%8D%E5%9B%BD%E8%84%9A%E7%A7%B0%E6%9C%88%E8%96%AA%E4%B8%80%E4%B8%87%E5%A4%9A%E4%B8%8D%E5%A4%9F%E4%BA%A4%E6%88%BF%E7%A7%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 前国脚称月薪一万多不够交房租 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 日前,前国脚赵明剑加盟中甲球队石家庄功夫,他在直播中透露自己目前在球队的月薪仅为一万多,连租房都不够,继续踢球是因为热爱... <a href=\"https://www.baidu.com/s?wd=%E5%89%8D%E5%9B%BD%E8%84%9A%E7%A7%B0%E6%9C%88%E8%96%AA%E4%B8%80%E4%B8%87%E5%A4%9A%E4%B8%8D%E5%A4%9F%E4%BA%A4%E6%88%BF%E7%A7%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 日前,前国脚赵明剑加盟中甲球队石家庄功夫,他在直播中透露自己目前在球队的月薪仅为一万多,连租房都不够,继续踢球是因为热爱。 <a href=\"https://www.baidu.com/s?wd=%E5%89%8D%E5%9B%BD%E8%84%9A%E7%A7%B0%E6%9C%88%E8%96%AA%E4%B8%80%E4%B8%87%E5%A4%9A%E4%B8%8D%E5%A4%9F%E4%BA%A4%E6%88%BF%E7%A7%9F&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%B7%84%E5%8D%9A%E7%83%A7%E7%83%A4%E6%80%8E%E4%B9%88%E5%B0%B1%E6%88%90%E4%BA%86%E6%96%B0%E6%99%8B%E2%80%9C%E9%A1%B6%E6%B5%81%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg24\"> 24 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2658588 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%B7%84%E5%8D%9A%E7%83%A7%E7%83%A4%E6%80%8E%E4%B9%88%E5%B0%B1%E6%88%90%E4%BA%86%E6%96%B0%E6%99%8B%E2%80%9C%E9%A1%B6%E6%B5%81%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 淄博烧烤怎么就成了新晋“顶流” </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E6%B7%84%E5%8D%9A%E7%83%A7%E7%83%A4%E6%80%8E%E4%B9%88%E5%B0%B1%E6%88%90%E4%BA%86%E6%96%B0%E6%99%8B%E2%80%9C%E9%A1%B6%E6%B5%81%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E6%B7%84%E5%8D%9A%E7%83%A7%E7%83%A4%E6%80%8E%E4%B9%88%E5%B0%B1%E6%88%90%E4%BA%86%E6%96%B0%E6%99%8B%E2%80%9C%E9%A1%B6%E6%B5%81%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=90%E5%90%8E%E7%94%B7%E7%94%9F%E6%8B%BF%E5%88%B0%E4%BA%AC%E6%88%B7%E7%A6%BB%E8%81%8C%E8%A2%AB%E5%85%AC%E5%8F%B8%E8%BF%BD%E5%81%BF&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg25\"> 25 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2542174 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=90%E5%90%8E%E7%94%B7%E7%94%9F%E6%8B%BF%E5%88%B0%E4%BA%AC%E6%88%B7%E7%A6%BB%E8%81%8C%E8%A2%AB%E5%85%AC%E5%8F%B8%E8%BF%BD%E5%81%BF&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 90后男生拿到京户离职被公司追偿 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=90%E5%90%8E%E7%94%B7%E7%94%9F%E6%8B%BF%E5%88%B0%E4%BA%AC%E6%88%B7%E7%A6%BB%E8%81%8C%E8%A2%AB%E5%85%AC%E5%8F%B8%E8%BF%BD%E5%81%BF&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=90%E5%90%8E%E7%94%B7%E7%94%9F%E6%8B%BF%E5%88%B0%E4%BA%AC%E6%88%B7%E7%A6%BB%E8%81%8C%E8%A2%AB%E5%85%AC%E5%8F%B8%E8%BF%BD%E5%81%BF&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%8F%B0%E6%B9%BE%E9%81%AD%E9%81%87%E2%80%9C30%E5%B9%B4%E6%9C%80%E5%A4%A7%E7%BC%BA%E8%8D%AF%E6%BD%AE%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg26\"> 26 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2400968 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%8F%B0%E6%B9%BE%E9%81%AD%E9%81%87%E2%80%9C30%E5%B9%B4%E6%9C%80%E5%A4%A7%E7%BC%BA%E8%8D%AF%E6%BD%AE%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 台湾遭遇“30年最大缺药潮” </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%8F%B0%E6%B9%BE%E9%81%AD%E9%81%87%E2%80%9C30%E5%B9%B4%E6%9C%80%E5%A4%A7%E7%BC%BA%E8%8D%AF%E6%BD%AE%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%8F%B0%E6%B9%BE%E9%81%AD%E9%81%87%E2%80%9C30%E5%B9%B4%E6%9C%80%E5%A4%A7%E7%BC%BA%E8%8D%AF%E6%BD%AE%E2%80%9D&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%BA%97%E5%85%9C%E5%94%AE%E4%B8%89%E5%AF%B8%E9%87%91%E8%8E%B2%E7%BC%A0%E8%B6%B3%E8%A2%9C299%E5%85%83%E4%B8%80%E5%8F%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg27\"> 27 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/965e4bfab8ae5003da79b73982cbeb80?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2354350 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%BA%97%E5%85%9C%E5%94%AE%E4%B8%89%E5%AF%B8%E9%87%91%E8%8E%B2%E7%BC%A0%E8%B6%B3%E8%A2%9C299%E5%85%83%E4%B8%80%E5%8F%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 网店兜售三寸金莲缠足袜299元一双 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,二手交易平台有店家上架兜售多款“三寸金莲”鞋及其缠足相关商品。其中一家网店兜售的缠足专用袜售价299元/双,还有买... <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%BA%97%E5%85%9C%E5%94%AE%E4%B8%89%E5%AF%B8%E9%87%91%E8%8E%B2%E7%BC%A0%E8%B6%B3%E8%A2%9C299%E5%85%83%E4%B8%80%E5%8F%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,二手交易平台有店家上架兜售多款“三寸金莲”鞋及其缠足相关商品。其中一家网店兜售的缠足专用袜售价299元/双,还有买家展示穿上脚的效果。 <a href=\"https://www.baidu.com/s?wd=%E7%BD%91%E5%BA%97%E5%85%9C%E5%94%AE%E4%B8%89%E5%AF%B8%E9%87%91%E8%8E%B2%E7%BC%A0%E8%B6%B3%E8%A2%9C299%E5%85%83%E4%B8%80%E5%8F%8C&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E5%8D%97%E4%BA%AC26%E5%B9%B4%E5%89%8D%E7%89%B9%E5%A4%A7%E6%8A%A2%E5%8A%AB%E6%9D%80%E4%BA%BA%E6%A1%88%E5%91%8A%E7%A0%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg28\"> 28 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2203096 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E5%8D%97%E4%BA%AC26%E5%B9%B4%E5%89%8D%E7%89%B9%E5%A4%A7%E6%8A%A2%E5%8A%AB%E6%9D%80%E4%BA%BA%E6%A1%88%E5%91%8A%E7%A0%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 南京26年前特大抢劫杀人案告破 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E5%8D%97%E4%BA%AC26%E5%B9%B4%E5%89%8D%E7%89%B9%E5%A4%A7%E6%8A%A2%E5%8A%AB%E6%9D%80%E4%BA%BA%E6%A1%88%E5%91%8A%E7%A0%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E5%8D%97%E4%BA%AC26%E5%B9%B4%E5%89%8D%E7%89%B9%E5%A4%A7%E6%8A%A2%E5%8A%AB%E6%9D%80%E4%BA%BA%E6%A1%88%E5%91%8A%E7%A0%B4&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E7%88%B6%E6%AF%8D%E5%8F%8C%E4%BA%A1%E5%A5%B3%E5%AD%A9%E8%80%83%E7%A0%94%E6%88%90%E5%8A%9F%E7%97%9B%E5%93%AD+%E6%A0%A1%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg29\"> 29 </div> <img src=\"https://fyb-2.cdn.bcebos.com/hotboard_image/393a63b39e1a16ac77c7cffba53384bf?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2168952 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E7%88%B6%E6%AF%8D%E5%8F%8C%E4%BA%A1%E5%A5%B3%E5%AD%A9%E8%80%83%E7%A0%94%E6%88%90%E5%8A%9F%E7%97%9B%E5%93%AD+%E6%A0%A1%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 父母双亡女孩考研成功痛哭 校方回应 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 ellipsis_DupbZ\"> 近日,贵州女孩父母双亡,考上研究生后失声痛哭。12日,吉林外国语大学研究生院负责人回应:“对学生负责到底,入学后进一步研... <a href=\"https://www.baidu.com/s?wd=%E7%88%B6%E6%AF%8D%E5%8F%8C%E4%BA%A1%E5%A5%B3%E5%AD%A9%E8%80%83%E7%A0%94%E6%88%90%E5%8A%9F%E7%97%9B%E5%93%AD+%E6%A0%A1%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> 近日,贵州女孩父母双亡,考上研究生后失声痛哭。12日,吉林外国语大学研究生院负责人回应:“对学生负责到底,入学后进一步研究帮扶措施。” <a href=\"https://www.baidu.com/s?wd=%E7%88%B6%E6%AF%8D%E5%8F%8C%E4%BA%A1%E5%A5%B3%E5%AD%A9%E8%80%83%E7%A0%94%E6%88%90%E5%8A%9F%E7%97%9B%E5%93%AD+%E6%A0%A1%E6%96%B9%E5%9B%9E%E5%BA%94&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div><div class=\"category-wrap_iQLoo horizontal_1eKyQ\"> <a class=\"img-wrapper_29V76\" href=\"https://www.baidu.com/s?wd=%E6%9D%91%E6%B0%91%E7%A7%B0%E4%BA%A4%E4%B8%87%E5%85%83%E9%93%BA%E8%B7%AF%E8%B4%B98%E5%B9%B4%E8%BF%98%E6%9C%AA%E4%BF%AE%E6%88%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" target=\"_blank\"> <div class=\"index_1Ew5p c-index-bg30\"> 30 </div> <img src=\"https://fyb-1.cdn.bcebos.com/fyb/de6163834f53ca92c1273fff98ac9078.jpeg?x-bce-process=image/resize,m_fill,w_256,h_170\" alt=\"\"> <div class=\"border_3WfEn\"></div> </a> <div class=\"trend_2RttY hide-icon\"> <div class=\"img-wrap_JPOmE trend-icon_1Z3Cd\"> <img src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/icon-same_886375f242bd1538af21a9721f16b170.png\"> </div> <div class=\"hot-index_1Bl1a\"> 2071484 </div> <div class=\"text_1lUwZ\"> 热搜指数 </div> </div> <img class=\"line_3-bzA\" src=\"//fyb-pc-static.cdn.bcebos.com/static/asset/line-bg@2x_95cb5a089159c6d5a959a596d460d60a.png\"> <div class=\"content_1YWBm\"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%91%E6%B0%91%E7%A7%B0%E4%BA%A4%E4%B8%87%E5%85%83%E9%93%BA%E8%B7%AF%E8%B4%B98%E5%B9%B4%E8%BF%98%E6%9C%AA%E4%BF%AE%E6%88%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"title_dIF3B \" target=\"_blank\"> <div class=\"c-single-text-ellipsis\"> 村民称交万元铺路费8年还未修成 </div> <div class=\"c-text hot-tag_1G080\"> </div> </a> <!--s-frag--> <div class=\"hot-desc_1m_jR small_Uvkd3 \"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%91%E6%B0%91%E7%A7%B0%E4%BA%A4%E4%B8%87%E5%85%83%E9%93%BA%E8%B7%AF%E8%B4%B98%E5%B9%B4%E8%BF%98%E6%9C%AA%E4%BF%AE%E6%88%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <div class=\"hot-desc_1m_jR large_nSuFU \"> <a href=\"https://www.baidu.com/s?wd=%E6%9D%91%E6%B0%91%E7%A7%B0%E4%BA%A4%E4%B8%87%E5%85%83%E9%93%BA%E8%B7%AF%E8%B4%B98%E5%B9%B4%E8%BF%98%E6%9C%AA%E4%BF%AE%E6%88%90&amp;sa=fyb_news&amp;rsv_dl=fyb_news\" class=\"look-more_3oNWC\" target=\"_blank\">查看更多&gt;</a> </div> <!--/s-frag--> </div> </div> </div> </div> </div> </main> <div class=\"container footer_aoJsU\"> <a class=\"c-font-small\" href=\"//www.baidu.com/cache/setindex/index.html\" target=\"_blank\">设为首页</a> <a class=\"c-font-small\" href=\"//home.baidu.com\" target=\"_blank\">关于百度</a> <a class=\"c-font-small\" href=\"http://ir.baidu.com\" target=\"_blank\">About Baidu</a> <a class=\"c-font-small\" href=\"//www.baidu.com/duty\" target=\"_blank\">使用百度前必读</a> <a class=\"c-font-small\" href=\"//help.baidu.com/newadd?prod_id=1&amp;category=4\" target=\"_blank\">意见反馈</a> <a class=\"c-font-small\" href=\"//help.baidu.com\" target=\"_blank\">帮助中心</a> <a class=\"c-font-small\" href=\"//e.baidu.com/lp/hot/?refer=1297\" target=\"_blank\">企业推广</a> <span class=\"c-font-small\">&copy;2021 Baidu</span> </div> <div class=\"container_2R1hQ\"> <a href=\"/board?page=rule&amp;tab=realtime\"> <i class=\"c-icon\">\uE67C</i> <div class=\"side-float-popup\">查看榜单规则</div> </a> </div> </div></div>";
// <div class="c-single-text-ellipsis"> 农村特色产业前景广阔 </div>
//1.创建一个Pattern对象,模式对象,可以理解为就是一个正则表达式对象
Pattern pattern = Pattern.compile("<div class=\"c-single-text-ellipsis\"> (\\S*) </div>");
//2.创建一个匹配器对象
//理解:就是matcher匹配器按照pattern
Matcher matcher = pattern.matcher(content);
//3.可以开始循环匹配
// int no = 0;
while (matcher.find()) {
//匹配内容,文本,放到m.group(0)
System.out.println("匹配结果:"+matcher.group(1));
//添加编号
// System.out.println("匹配结果:"+ (++no)+" "+matcher.group(1));
}
}
}

# ip 提取

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 8:41
* @概述:
*/
public class Regexp_4 {
public static void main(String[] args) {
String content = "私有地址\n" +
"私有地址(Private address)属于非注册地址,专门为组织机构内部使用。\n" +
"以下列出留用的内部私有地址\n" +
"A类 10.0.0.0--10.255.255.255\n" +
"B类 172.16.0.0--172.31.255.255\n" +
"C类 192.168.0.0--192.168.255.255";

//1.创建一个Pattern对象,模式对象,可以理解为就是一个正则表达式对象
Pattern pattern = Pattern.compile("\\d+\\.\\d+\\.\\d+\\.\\d+");
//2.创建一个匹配器对象
//理解:就是matcher匹配器按照pattern
Matcher matcher = pattern.matcher(content);
//3.可以开始循环匹配
int no = 0;
while (matcher.find()) {
//匹配内容,文本,放到m.group(0)
System.out.println("匹配结果:"+matcher.group(0));
//添加编号
System.out.println("匹配结果:"+ (++no)+" "+matcher.group(0));
}
}
}

# Java 正则表达式的底层实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 9:18
* @概述:Java正则表达式的底层实现
*/
public class RegTheory {
public static void main(String[] args) {
String content = "2001年是个平年。\n" +
"但是出现了闰月,因为按照新历来说,是平年,按农历年份来说,它则是个闰年。闰四月," +
"也就是农历的2001年中出现了两个四月份。闰月的出现也只是为了调和农历和新历之间的差距," +
"使历年平均长度接近回归年。另外,它还是佛历中的第二五四五年,和黄帝纪年中的第4698年。\n" +
"2001还是个双春年,上一年千禧年是个无春年,而到了2001则成了双春年,也就是农历出现了两个立春。" +
"双春年又叫孤鸾年和两头春。\n" +
"大部分为辛巳年:\n" +
"因为新历的2001年和农历辛巳年并不完全重合,所以在新历年中有一部分还属于上一年庚辰年,下面来看看详细的划分:\n" +
"第一种划分:按每年“立春”进行划分:\n" +
"阳历(公历)时间:\n" +
"2000年2月4日20时32分——2001年2月4日2时20分,农历庚辰年。\n" +
"2001年2月4日2时20分——2002年2月4日8时8分,农历辛巳年。\n" +
"第二种划分:按每年“初一(春节)”进行划分:\n";
//目标:匹配所有的四个数字
//说明
//1. \\d 表示一个任意的数字
String regStr = "\\d\\d\\d\\d";
//2. 创建模式对象[即正则表达式对象]
Pattern pattern = Pattern.compile(regStr);
//3. 创建匹配器
//说明:创建匹配器matcher,按照正则表达式的规则 去匹配content字符串
Matcher matcher = pattern.matcher(content);

//4. 匹配
/**
* matcher.find() 完成的任务 (考虑分组)
* 什么是分组,比如(\d\d)(\d\d),正则表达式中有()表示分组,第一个()表示第一组,第二个()表示第二组
* 总结:
* 1. 如果正则表达式有()即分组
* 2. 取出匹配的字符串规则如下
* 3. group(0)表示匹配到的字符串
* 4. group(1)表示匹配到的字符串的第一组
* 5. group(2)表示匹配到的字符串的第二组
* 6. 。。。但是分组的数不能越界。
*
*
* 1. 根据指定的规则,定位满足规则的子字符串(比如 2001)
* 2. 找到后,将子字符串的开始的索引记录到matcher对象的属性 int[] groups;
* groups[0]=0,把该字符串的结束的索引+1的值记录到groups[1] = 4;
*
* 3. 同时记录oldLast的值为字符串的结束的索引+1的值即4,即下次执行find时,就从4开始匹配
*
* matcher.group(0)分析
*
*
* public String group(int group) {
* if (first < 0)
* throw new IllegalStateException("No match found");
* if (group < 0 || group > groupCount())
* throw new IndexOutOfBoundsException("No group " + group);
* if ((groups[group*2] == -1) || (groups[group*2+1] == -1))
* return null;
* return getSubSequence(groups[group * 2], groups[group * 2 + 1]).toString();
* }
*
* 1. 根据groups[0] = 0 和groups[1] = 4的记录的位置,从content开始截取字符串返回
* 就是[0,4)包含0但是不包含索引为4的位置
*/
while (matcher.find()) {
System.out.println("匹配到:"+ matcher.group(0));
}
}
}

# 正则转义符

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 16:50
* @概述:演示转义符的使用
*/
public class RegExp02 {
public static void main(String[] args) {
String content = "abc$(ab.c(123(";
//匹配(
String regStr = "\\(";
Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);

while (matcher.find()) {
System.out.println(matcher.group(0));
}
}
}

# 字符匹配符的使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/13 17:10
* @概述:字符匹配符的使用
*/
public class RegExp04 {
public static void main(String[] args) {

String content = "a11c8abc";
String regStr = "abc";//匹配到abc字符,默认区分大小写
// String regStr = "(?i)abc";//匹配到abc字符,不区分大小写
//说明:
//1. a(?i)bc表示bc不区分大小写
//2. a((?i)b)c表示只有b不区分大小写


Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);

while (matcher.find()) {
System.out.println("匹配到:"+matcher.group(0));
}
}
}

# 选择匹配符

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import static java.util.regex.Pattern.CASE_INSENSITIVE;

/*
* @Author: jun
* @Date:2023/4/13 20:20
* @概述:
*/
public class RegExp05 {
public static void main(String[] args) {
String content = "kelishi 克 里斯";
String regStr = "ke|克|fr";

Pattern pattern = Pattern.compile(regStr ,Pattern.CASE_INSENSITIVE);
Matcher matcher = pattern.matcher(content);
while(matcher.find()){
System.out.println("zaodao: " + matcher.group(0));
}
}
}

# 定位符

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/15 20:34
* @概述:演示定位符
*/
public class RegExp06 {
public static void main(String[] args) {
//起始符与结尾符
// String content = "a123-a999bc121";
//
// //至少一个数字开头,后接任意个字母的字符串
// String regStr = "^a+[0-9]+\\-[a-z]*";
// Pattern pattern = Pattern.compile(regStr);
// Matcher matcher = pattern.matcher(content);

//匹配边界的jun
String content = "huanjunjundededejunjuncdcdc";
// String regStr = "jun\\b";
String regStr = "jun\\B";

Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);

while (matcher.find()) {
System.out.println("找到= " +matcher.group(0));
}

}
}

# 非捕获分组

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/15 20:57
* @概述:
*/
public class RegExp07 {
public static void main(String[] args) {
String content = "hello韩顺平教育 jack韩顺平老师 韩顺平同学hello";
//找到韩顺平老师、韩顺平老师、韩顺平同学 子字符串
// String regStr = "韩顺平教育|韩顺平老师|韩顺平同学";
//上面的写法可以等价于非捕获分组的写法,如下
// String regStr = "韩顺平(?:教育|老师|同学)";

//找到 韩顺平 这个关键字,但是要求只能查找到韩顺平教育 和 韩顺平老师 中包含有的韩顺平
// String regStr = "韩顺平(?=教育|老师)";//返回两个韩顺平

//找到 韩顺平 关键字, 但是要求只能是查找,不是(韩顺平教育 和 韩顺平老师)中包含的韩顺平
String regStr = "韩顺平(?!教育|老师)";//返回一个韩顺平

Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);
while (matcher.find()) {
System.out.println("找到: "+matcher.group(0));
}

}
}

# 正则表达式的实例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/16 19:20
* @概述:正则表达式的实例
*/
public class RegExp08 {
public static void main(String[] args) {
// String content = "韩顺平教育";
//
// //1.匹配汉字
// String regStr = "^[\u0391-\uffe5]+$";
// Pattern pattern = Pattern.compile(regStr);
// Matcher matcher = pattern.matcher(content);
//
// if (matcher.find()) {
// System.out.println("满足格式");
// } else{
// System.out.println("不满足格式");
// }

//2.邮政编码
//要求是1-9开头的六位数,比如123890
// String content = "336600";
// String regStr = "^[1-9]\\d{5}$";
// Pattern pattern = Pattern.compile(regStr);
// Matcher matcher = pattern.matcher(content);
//
// while (matcher.find()) {
// System.out.println(matcher.group(0));
// }

//3.QQ号码
//要求是1-9开头的一个5位数-10位数,比如:12389.123466.
// String content = "336600";
// String regStr = "^[1-9]\\d{4,9}$";
// Pattern pattern = Pattern.compile(regStr);
// Matcher matcher = pattern.matcher(content);
//
// while (matcher.find()) {
// System.out.println(matcher.group(0));
// }

//4.电话号码
//要求必须是13,14,15,18开头的11位数,比如13588889999
String content = "15270868432";
String regStr = "^1[3|4|5|8]\\d{9}$";
Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);

while (matcher.find()) {
System.out.println(matcher.group(0));
}


}
}

# 正则表达式的使用,匹配 URL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/16 19:35
* @概述:演示正则表达式的使用,匹配URL
*/
public class RegExp09 {
public static void main(String[] args) {
String content = "https://www.bilibili.com/video/BV1Eq4y1E79W?p=17&sp#m_id_from=pageDriver&vd_source=7c6c7bb18c7ca81e3c9e3e6722861c9d";
/**
* 思路
* 1.先确定url的开始部分 https:// |http://
* 2.然后通过([\w-]+\.)+[\w-]+ 匹配www.bilibili.com
* 3./video/BV1Eq4y1E79W?p=17&spm_id_from=pageDriver
*
*/
String regStr = "^((http|https)://)([\\w-]+\\.)+[\\w-]+(\\/[\\w-?=#&/%.]*)?$";//注意:[.]表示匹配就是.本身
Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);

if (matcher.find()) {
System.out.println("满足格式");
} else{
System.out.println("不满足格式");
}

}
}

# 整体匹配

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.jun.regexp;

import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/16 20:03
* @概述:
*/
public class patternMethod {
public static void main(String[] args) {
String content = "hello abc hello ,俊俊不怕困难";
String regStr = "hello.*";//true
// String regStr = "hello";//false
boolean matches = Pattern.matches(regStr, content);
System.out.println("整体匹配="+ matches);
}
}

# 反向引用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/17 11:09
* @概述:反向引用
*/
public class Regexp10 {
public static void main(String[] args) {
// String content = "hello jun adasd22 jun adad jjj 55555jj 1122 1221 1212";

// String regStr = "(\\d)\\1";//找到两个连续的相同数字
// String regStr = "(\\d)\\1{4}";//找到五个连续的相同数字
// String regStr = "(\\d)(\\d)\\1\\2";//找到个位与千位相同,十位与百位相同的数字

/**
* 请在字符串中检索商品编号,形式如: 12321-333999111 这样的号码
* 要求满足前面是一个五位数,然后一个- 号,然后是一个九位数,
* 连续的每三位要相同
*/
String content = "12321-333999111";
String regStr = "\\d{5}-(\\d)\\1{2}(\\d)\\2{2}(\\d)\\3{2}";
Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);
while (matcher.find()) {
System.out.println("找到:"+matcher.group(0));
}
}
}

# 去重

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/17 11:29
* @概述:
*/
public class RegExp11 {
public static void main(String[] args) {
String content = "我....需需要....要yolov5的数数据集...";

//1. 去除所有的.
Pattern pattern = Pattern.compile("\\.");
Matcher matcher = pattern.matcher(content);
content = matcher.replaceAll("");
System.out.println("去除所有的.之后的:"+content);

//2. 去除重复的字 我需需要要yolov5的数数据集
//思路
//(1)使用(.)\\1+
// (2) 使用 反向引用$1 替换匹配到的内容
// 注意:因为正则表达式变化,所以需要重置matcher
pattern = Pattern.compile("(.)\\1+");//分组的捕获内容记录到$1
matcher = pattern.matcher(content);
while (matcher.find()) {
System.out.println("重复的有:"+matcher.group(0));
}
//使用反向引用$1 来替换匹配到的内容
content = matcher.replaceAll("$1");
System.out.println("去重后的:"+content);

//使用一条语句,去掉重复的字,如下写法
// content = Pattern.compile("(.)\\1+").matcher(content).replaceAll("$1");

}
}

# 替换分割匹配

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.jun.regexp;

/*
* @Author: jun
* @Date:2023/4/17 12:06
* @概述:
*/
public class RegExp12 {
public static void main(String[] args) {
String content ="2000年5月,JDK1.3、JDK1.4和J2SE1.3相继发布,几周后其"+
"获得了Apple公司Mac OS X的工业标准的支持。2001年9月24日,J2EE1.3发"+
"布。" +
"2002年2月26日,J2SE1.4发布。自此Java的计算能力有了大幅提升";
//使用正则表达式,将JDK1.3 和JDK1.4替换成JDK
content = content.replaceAll("JDK1\\.3|JDK1\\.4","JDK");
System.out.println(content);

//要求 验证一个手机号, 要求必须是138 139开头的
content = "13189899891";
if (content.matches("1(38|39)\\d{8}")) {
System.out.println("符合要求");
} else{
System.out.println("不符合要求");
}

//要求按照 # 或者- 或者 ~ 或者 数字 来分割
System.out.println("===================");
content ="hello#abc-jack12smith~北京";
String[] split = content.split("#|-|~|\\d+");
for (String s :
split) {
System.out.println(s);
}
}
}

# 练习一

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.jun.regexp;

/*
* @Author: jun
* @Date:2023/4/17 12:18
* @概述:纸上得来终觉浅,绝知此事要躬行
*/
public class Homework01 {
public static void main(String[] args) {
//规定电子邮件规则为
//只能有一个@
//@前面是用户名,可以是a-z A-Z 0-9 _-字符//@后面是域名,并且域名只能是英文字母,
// 比如 sohu.com 或者 tsinghua.org.cn
// 写出对应的正则表达式,
// 验证输入的字符串是否为满足规则I
String content = "hsp@shu.com";
String regStr = "[\\w-]+@([a-zA-Z]+\\.)+[a-zA-Z]+";

if (content.matches(regStr)) {
System.out.println("匹配成功");
} else {
System.out.println("匹配失败");
}

}
}

# 练习二

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.jun.regexp;

/*
* @Author: jun
* @Date:2023/4/17 13:19
* @概述:
*/
public class Homework02 {
public static void main(String[] args) {
//要求验证是不是整数或者小数
//提示: 这个题需要考虑正数和负数
//比如: 123-345 34.89 -87.9 -0.01 0.45等

/**
* 1. 先写出简单的正则表达式
* 2. 再逐步的完善[根据各种情况]
*/
String content = "1.23";
String regStr = "^[-+]?([1-9]\\d*|0)(\\.\\d+)?$";
if (content.matches(regStr)) {
System.out.println("匹配成功 是整数或者小数");
} else {
System.out.println("匹配不成功");
}
}
}

# 练习三

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.jun.regexp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/*
* @Author: jun
* @Date:2023/4/17 13:33
* @概述:
*/
public class Homework03 {
public static void main(String[] args) {
//http://www.sohu.com:8080/abc/index.htm
// 要求得到协议是什么? http
// 域名是什么?www.sohu.com
// 端口是什么?8080
// 文件名是什么?index.htm

//思路
//分组:4组,分别获取对应的值
String content = "http://www.sohu.com:8080/abc/index.htm";
String regStr = "^([a-zA-Z]+)://([a-zA-Z.]+):(\\d+)[\\w-/]*/([\\w.]+)$";

Pattern pattern = Pattern.compile(regStr);
Matcher matcher = pattern.matcher(content);
if (matcher.matches()) {
System.out.println("整体匹配:"+matcher.group(0));
System.out.println("整体匹配成功,协议是:"+matcher.group(1));
System.out.println("整体匹配成功,域名是:"+matcher.group(2));
System.out.println("整体匹配成功,端口是:"+matcher.group(3));
System.out.println("整体匹配成功,文件名是:"+matcher.group(4));
}else {
System.out.println("匹配不成功");
}
}
}