优化结果
This commit is contained in:
196
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/background.css
Normal file
196
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/background.css
Normal file
@@ -0,0 +1,196 @@
|
||||
/* 页面主背景 */
|
||||
body {
|
||||
background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #d4f1d4 100%);
|
||||
background-attachment: fixed;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 背景装饰元素 */
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image:
|
||||
radial-gradient(circle at 20% 80%, rgba(39, 174, 96, 0.05) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.05) 0%, transparent 50%),
|
||||
radial-gradient(circle at 40% 40%, rgba(168, 230, 207, 0.08) 0%, transparent 50%);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
/* 容器背景 */
|
||||
.container {
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
backdrop-filter: blur(10px);
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 8px 32px rgba(39, 174, 96, 0.1);
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* 头部背景 */
|
||||
.header {
|
||||
background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(168, 230, 207, 0.05) 100%);
|
||||
border-radius: 16px 16px 0 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.header::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background:
|
||||
radial-gradient(circle at 30% 20%, rgba(39, 174, 96, 0.1) 0%, transparent 40%),
|
||||
radial-gradient(circle at 70% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 40%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* 热搜项目背景 */
|
||||
.hot-item {
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
backdrop-filter: blur(8px);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hot-item::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 60px;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent 0%, rgba(39, 174, 96, 0.02) 100%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* 前三名特殊背景效果 */
|
||||
.hot-item:nth-child(1) {
|
||||
background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
|
||||
}
|
||||
|
||||
.hot-item:nth-child(2) {
|
||||
background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
|
||||
}
|
||||
|
||||
.hot-item:nth-child(3) {
|
||||
background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
|
||||
}
|
||||
|
||||
/* 加载状态背景 */
|
||||
.loading {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: blur(8px);
|
||||
border-radius: 12px;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
/* 错误信息背景 */
|
||||
.error-message {
|
||||
background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
|
||||
backdrop-filter: blur(8px);
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(231, 76, 60, 0.1);
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
/* 底部背景 */
|
||||
.footer {
|
||||
background: linear-gradient(135deg, rgba(39, 174, 96, 0.03) 0%, rgba(168, 230, 207, 0.03) 100%);
|
||||
border-radius: 0 0 16px 16px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 60px;
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent 0%, rgba(39, 174, 96, 0.3) 50%, transparent 100%);
|
||||
}
|
||||
|
||||
/* 响应式背景调整 */
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.header {
|
||||
border-radius: 12px 12px 0 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
border-radius: 0 0 12px 12px;
|
||||
}
|
||||
|
||||
body::before {
|
||||
background-image:
|
||||
radial-gradient(circle at 20% 80%, rgba(39, 174, 96, 0.03) 0%, transparent 40%),
|
||||
radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.03) 0%, transparent 40%);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1025px) {
|
||||
.container {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
body::before {
|
||||
background-image:
|
||||
radial-gradient(circle at 15% 85%, rgba(39, 174, 96, 0.06) 0%, transparent 60%),
|
||||
radial-gradient(circle at 85% 15%, rgba(46, 204, 113, 0.06) 0%, transparent 60%),
|
||||
radial-gradient(circle at 50% 50%, rgba(168, 230, 207, 0.04) 0%, transparent 70%);
|
||||
}
|
||||
}
|
||||
|
||||
/* 动画效果 */
|
||||
@keyframes backgroundShift {
|
||||
0% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 50%;
|
||||
}
|
||||
}
|
||||
|
||||
/* 悬浮时的背景变化 */
|
||||
.hot-item:hover {
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
}
|
||||
|
||||
.hot-item:hover::after {
|
||||
background: linear-gradient(90deg, transparent 0%, rgba(39, 174, 96, 0.05) 100%);
|
||||
}
|
||||
|
||||
/* 排名背景渐变 */
|
||||
.rank {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.rank::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
|
||||
pointer-events: none;
|
||||
}
|
||||
40
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/index.html
Normal file
40
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/index.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>百度实时热搜榜单</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="stylesheet" href="background.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header class="header">
|
||||
<h1 class="title">百度实时热搜榜单</h1>
|
||||
<p class="subtitle">实时热门搜索,掌握网络脉搏</p>
|
||||
</header>
|
||||
|
||||
<main class="main-content">
|
||||
<div class="loading" id="loading">
|
||||
<div class="loading-spinner"></div>
|
||||
<p>正在加载热搜数据...</p>
|
||||
</div>
|
||||
|
||||
<div class="error-message" id="error" style="display: none;">
|
||||
<p>数据加载失败,请稍后重试</p>
|
||||
<button class="retry-btn" onclick="loadData()">重新加载</button>
|
||||
</div>
|
||||
|
||||
<div class="hot-list" id="hotList" style="display: none;">
|
||||
<!-- 热搜列表将通过JavaScript动态生成 -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<p class="update-time" id="updateTime"></p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
196
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/script.js
Normal file
196
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/script.js
Normal file
@@ -0,0 +1,196 @@
|
||||
// DOM元素获取
|
||||
const loadingElement = document.getElementById('loading');
|
||||
const errorElement = document.getElementById('error');
|
||||
const hotListElement = document.getElementById('hotList');
|
||||
const updateTimeElement = document.getElementById('updateTime');
|
||||
|
||||
// 页面加载完成后初始化
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
loadData();
|
||||
|
||||
// 每5分钟自动刷新数据
|
||||
setInterval(loadData, 5 * 60 * 1000);
|
||||
|
||||
// 监听页面可见性变化,页面重新可见时刷新数据
|
||||
document.addEventListener('visibilitychange', function() {
|
||||
if (!document.hidden) {
|
||||
loadData();
|
||||
}
|
||||
});
|
||||
|
||||
// 监听网络状态变化
|
||||
window.addEventListener('online', loadData);
|
||||
});
|
||||
|
||||
// 加载数据函数
|
||||
async function loadData() {
|
||||
try {
|
||||
showLoading();
|
||||
|
||||
// 调用百度实时热搜API
|
||||
const response = await fetch('https://60s.api.shumengya.top/v2/baidu/realtime');
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error! status: ${response.status}`);
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
|
||||
if (data.code === 200 && data.data) {
|
||||
renderHotList(data.data);
|
||||
updateTime();
|
||||
hideLoading();
|
||||
} else {
|
||||
throw new Error(data.message || '数据格式错误');
|
||||
}
|
||||
|
||||
} catch (error) {
|
||||
console.error('加载数据失败:', error);
|
||||
showError();
|
||||
}
|
||||
}
|
||||
|
||||
// 渲染热搜列表
|
||||
function renderHotList(hotData) {
|
||||
if (!hotData || !Array.isArray(hotData)) {
|
||||
showError();
|
||||
return;
|
||||
}
|
||||
|
||||
const listHTML = hotData.map((item, index) => {
|
||||
const rank = index + 1;
|
||||
const rankClass = rank <= 3 ? (rank === 1 ? 'top1' : 'top3') : '';
|
||||
|
||||
// 处理封面图片
|
||||
const coverImg = item.pic ?
|
||||
`<img src="${item.pic}" alt="${item.title}" class="item-cover" onerror="this.style.display='none'">` :
|
||||
'';
|
||||
|
||||
// 处理描述信息
|
||||
const description = item.desc || '';
|
||||
|
||||
// 处理热度值
|
||||
const hotValue = item.hot || '';
|
||||
|
||||
// 处理链接
|
||||
const linkUrl = item.url || '#';
|
||||
|
||||
return `
|
||||
<div class="hot-item" onclick="openLink('${linkUrl}')">
|
||||
<div class="rank ${rankClass}">${rank}</div>
|
||||
${coverImg}
|
||||
<div class="item-content">
|
||||
<div class="item-header">
|
||||
<h3 class="item-title">${item.title || '无标题'}</h3>
|
||||
</div>
|
||||
${description ? `<p class="item-desc">${description}</p>` : ''}
|
||||
<div class="item-footer">
|
||||
${hotValue ? `<span class="item-score">${formatHotValue(hotValue)}</span>` : ''}
|
||||
<div class="item-type">
|
||||
<span class="type-text type-hot">热搜</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}).join('');
|
||||
|
||||
hotListElement.innerHTML = listHTML;
|
||||
hotListElement.style.display = 'block';
|
||||
}
|
||||
|
||||
// 格式化热度值
|
||||
function formatHotValue(value) {
|
||||
if (!value) return '';
|
||||
|
||||
// 如果是数字,进行格式化
|
||||
if (typeof value === 'number') {
|
||||
if (value >= 10000) {
|
||||
return (value / 10000).toFixed(1) + '万';
|
||||
}
|
||||
return value.toString();
|
||||
}
|
||||
|
||||
// 如果是字符串,直接返回
|
||||
return value.toString();
|
||||
}
|
||||
|
||||
// 打开链接
|
||||
function openLink(url) {
|
||||
if (url && url !== '#') {
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
}
|
||||
|
||||
// 显示加载状态
|
||||
function showLoading() {
|
||||
loadingElement.style.display = 'block';
|
||||
errorElement.style.display = 'none';
|
||||
hotListElement.style.display = 'none';
|
||||
}
|
||||
|
||||
// 隐藏加载状态
|
||||
function hideLoading() {
|
||||
loadingElement.style.display = 'none';
|
||||
}
|
||||
|
||||
// 显示错误信息
|
||||
function showError() {
|
||||
loadingElement.style.display = 'none';
|
||||
errorElement.style.display = 'block';
|
||||
hotListElement.style.display = 'none';
|
||||
}
|
||||
|
||||
// 更新时间显示
|
||||
function updateTime() {
|
||||
const now = new Date();
|
||||
const timeString = now.toLocaleString('zh-CN', {
|
||||
year: 'numeric',
|
||||
month: '2-digit',
|
||||
day: '2-digit',
|
||||
hour: '2-digit',
|
||||
minute: '2-digit',
|
||||
second: '2-digit'
|
||||
});
|
||||
updateTimeElement.textContent = `最后更新时间: ${timeString}`;
|
||||
}
|
||||
|
||||
// 重试加载数据
|
||||
function retryLoad() {
|
||||
loadData();
|
||||
}
|
||||
|
||||
// 页面滚动优化
|
||||
let ticking = false;
|
||||
|
||||
function updateScrollPosition() {
|
||||
// 可以在这里添加滚动相关的优化逻辑
|
||||
ticking = false;
|
||||
}
|
||||
|
||||
window.addEventListener('scroll', function() {
|
||||
if (!ticking) {
|
||||
requestAnimationFrame(updateScrollPosition);
|
||||
ticking = true;
|
||||
}
|
||||
});
|
||||
|
||||
// 错误处理和日志记录
|
||||
window.addEventListener('error', function(e) {
|
||||
console.error('页面错误:', e.error);
|
||||
});
|
||||
|
||||
window.addEventListener('unhandledrejection', function(e) {
|
||||
console.error('未处理的Promise拒绝:', e.reason);
|
||||
});
|
||||
|
||||
// 性能监控
|
||||
if ('performance' in window) {
|
||||
window.addEventListener('load', function() {
|
||||
setTimeout(function() {
|
||||
const perfData = performance.timing;
|
||||
const loadTime = perfData.loadEventEnd - perfData.navigationStart;
|
||||
console.log('页面加载时间:', loadTime + 'ms');
|
||||
}, 0);
|
||||
});
|
||||
}
|
||||
371
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/styles.css
Normal file
371
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/styles.css
Normal file
@@ -0,0 +1,371 @@
|
||||
/* 基础样式重置 */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #2c3e50;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 16px;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* 头部样式 */
|
||||
.header {
|
||||
text-align: center;
|
||||
padding: 24px 0;
|
||||
border-bottom: 2px solid #a8e6cf;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
color: #27ae60;
|
||||
margin-bottom: 8px;
|
||||
text-shadow: 0 2px 4px rgba(39, 174, 96, 0.1);
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 14px;
|
||||
color: #7f8c8d;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* 主内容区域 */
|
||||
.main-content {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 加载状态 */
|
||||
.loading {
|
||||
text-align: center;
|
||||
padding: 60px 20px;
|
||||
color: #27ae60;
|
||||
}
|
||||
|
||||
.loading-spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 3px solid #a8e6cf;
|
||||
border-top: 3px solid #27ae60;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
margin: 0 auto 16px;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* 错误信息 */
|
||||
.error-message {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #e74c3c;
|
||||
}
|
||||
|
||||
.retry-btn {
|
||||
background: #27ae60;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 10px 20px;
|
||||
border-radius: 20px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
margin-top: 16px;
|
||||
transition: background 0.3s ease;
|
||||
}
|
||||
|
||||
.retry-btn:hover {
|
||||
background: #219a52;
|
||||
}
|
||||
|
||||
/* 热搜列表 */
|
||||
.hot-list {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.hot-item {
|
||||
background: #ffffff;
|
||||
border: 1px solid #e8f5e8;
|
||||
border-radius: 12px;
|
||||
padding: 16px;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 2px 8px rgba(39, 174, 96, 0.08);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.hot-item:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px rgba(39, 174, 96, 0.15);
|
||||
border-color: #a8e6cf;
|
||||
}
|
||||
|
||||
.hot-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
background: linear-gradient(to bottom, #27ae60, #a8e6cf);
|
||||
}
|
||||
|
||||
/* 排名样式 */
|
||||
.rank {
|
||||
background: linear-gradient(135deg, #27ae60, #2ecc71);
|
||||
color: white;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
flex-shrink: 0;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.rank.top3 {
|
||||
background: linear-gradient(135deg, #f39c12, #e67e22);
|
||||
}
|
||||
|
||||
.rank.top1 {
|
||||
background: linear-gradient(135deg, #e74c3c, #c0392b);
|
||||
}
|
||||
|
||||
/* 封面图片 */
|
||||
.item-cover {
|
||||
width: 80px;
|
||||
height: 60px;
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
flex-shrink: 0;
|
||||
border: 1px solid #e8f5e8;
|
||||
}
|
||||
|
||||
/* 内容区域 */
|
||||
.item-content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
min-height: 60px;
|
||||
}
|
||||
|
||||
.item-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #2c3e50;
|
||||
line-height: 1.4;
|
||||
margin-bottom: 4px;
|
||||
transition: color 0.3s ease;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.item-title:hover {
|
||||
color: #27ae60;
|
||||
}
|
||||
|
||||
.item-desc {
|
||||
font-size: 13px;
|
||||
color: #7f8c8d;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 8px;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.item-footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.item-score {
|
||||
font-size: 14px;
|
||||
color: #27ae60;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.item-type {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.type-icon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.type-text {
|
||||
font-size: 12px;
|
||||
padding: 2px 8px;
|
||||
border-radius: 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.type-hot {
|
||||
background: #ffe6e6;
|
||||
color: #e74c3c;
|
||||
}
|
||||
|
||||
.type-new {
|
||||
background: #e6f3ff;
|
||||
color: #3498db;
|
||||
}
|
||||
|
||||
.type-default {
|
||||
background: #f8f9fa;
|
||||
color: #6c757d;
|
||||
}
|
||||
|
||||
/* 底部 */
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 24px 0;
|
||||
border-top: 1px solid #e8f5e8;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.update-time {
|
||||
font-size: 12px;
|
||||
color: #95a5a6;
|
||||
}
|
||||
|
||||
/* 手机端优化 (默认) */
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
padding: 0 12px;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.hot-item {
|
||||
padding: 14px;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.item-cover {
|
||||
width: 60px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.item-desc {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.rank {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 平板端适配 */
|
||||
@media (min-width: 769px) and (max-width: 1024px) {
|
||||
.container {
|
||||
padding: 0 24px;
|
||||
}
|
||||
|
||||
.hot-list {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.hot-item {
|
||||
padding: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 电脑端适配 */
|
||||
@media (min-width: 1025px) {
|
||||
.container {
|
||||
padding: 0 32px;
|
||||
}
|
||||
|
||||
.hot-list {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.hot-item {
|
||||
padding: 20px;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.item-cover {
|
||||
width: 100px;
|
||||
height: 75px;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.item-desc {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 大屏幕优化 */
|
||||
@media (min-width: 1400px) {
|
||||
.hot-list {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 24px;
|
||||
}
|
||||
}
|
||||
606
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/返回接口.json
Normal file
606
InfoGenie-frontend/public/60sapi/热搜榜单/百度实时热搜/返回接口.json
Normal file
@@ -0,0 +1,606 @@
|
||||
{
|
||||
"code": 200,
|
||||
"message": "获取成功。数据来自官方/权威源头,以确保稳定与实时。开源地址 https://github.com/vikiboss/60s,反馈群 595941841",
|
||||
"data": [
|
||||
{
|
||||
"rank": 1,
|
||||
"title": "102岁老兵ICU看阅兵后安详离世",
|
||||
"desc": "",
|
||||
"score": "7807952",
|
||||
"score_desc": "780.8w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/e190dea8327f8295c8a5883878fe6d14",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=102%E5%B2%81%E8%80%81%E5%85%B5ICU%E7%9C%8B%E9%98%85%E5%85%B5%E5%90%8E%E5%AE%89%E8%AF%A6%E7%A6%BB%E4%B8%96&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 2,
|
||||
"title": "看阅兵明白了耿爽联合国发言含金量",
|
||||
"desc": "",
|
||||
"score": "7714187",
|
||||
"score_desc": "771.42w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/83340b647c7a2f569c0a03482d5b40f1",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E7%9C%8B%E9%98%85%E5%85%B5%E6%98%8E%E7%99%BD%E4%BA%86%E8%80%BF%E7%88%BD%E8%81%94%E5%90%88%E5%9B%BD%E5%8F%91%E8%A8%80%E5%90%AB%E9%87%91%E9%87%8F&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 3,
|
||||
"title": "80秒带你回顾阅兵“高燃瞬间”",
|
||||
"desc": "",
|
||||
"score": "7616477",
|
||||
"score_desc": "761.65w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/a64eb808789c7bae99eb3e0f98a20621",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=80%E7%A7%92%E5%B8%A6%E4%BD%A0%E5%9B%9E%E9%A1%BE%E9%98%85%E5%85%B5%E2%80%9C%E9%AB%98%E7%87%83%E7%9E%AC%E9%97%B4%E2%80%9D&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 4,
|
||||
"title": "新华社认证的帅兵哥已婚",
|
||||
"desc": "",
|
||||
"score": "7522472",
|
||||
"score_desc": "752.25w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/493dd01d2abf915809eb1387e5b8a026",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E6%96%B0%E5%8D%8E%E7%A4%BE%E8%AE%A4%E8%AF%81%E7%9A%84%E5%B8%85%E5%85%B5%E5%93%A5%E5%B7%B2%E5%A9%9A&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 5,
|
||||
"title": "普京记者会身后的大红灯笼亮了",
|
||||
"desc": "",
|
||||
"score": "7426902",
|
||||
"score_desc": "742.69w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/1e895a56da47054e111ce225b1efd58f",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E6%99%AE%E4%BA%AC%E8%AE%B0%E8%80%85%E4%BC%9A%E8%BA%AB%E5%90%8E%E7%9A%84%E5%A4%A7%E7%BA%A2%E7%81%AF%E7%AC%BC%E4%BA%AE%E4%BA%86&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 6,
|
||||
"title": "中国网警:烽火烬处 赓续前行",
|
||||
"desc": "",
|
||||
"score": "7332067",
|
||||
"score_desc": "733.21w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/0d872743f2cfabc8fd9ee1da970a5fed",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E7%BD%91%E8%AD%A6%EF%BC%9A%E7%83%BD%E7%81%AB%E7%83%AC%E5%A4%84+%E8%B5%93%E7%BB%AD%E5%89%8D%E8%A1%8C&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 7,
|
||||
"title": "“呼叫81192!” 这一刻含泪量太高",
|
||||
"desc": "",
|
||||
"score": "7237296",
|
||||
"score_desc": "723.73w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/552c202f87db2219d6e150a39976bad7",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E2%80%9C%E5%91%BC%E5%8F%AB81192%EF%BC%81%E2%80%9D+%E8%BF%99%E4%B8%80%E5%88%BB%E5%90%AB%E6%B3%AA%E9%87%8F%E5%A4%AA%E9%AB%98&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 8,
|
||||
"title": "天津和平鸽归巢主人激动吹哨迎接",
|
||||
"desc": "",
|
||||
"score": "7139286",
|
||||
"score_desc": "713.93w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/1c5dfd83c55b6482d1307f310d5642a7",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E5%A4%A9%E6%B4%A5%E5%92%8C%E5%B9%B3%E9%B8%BD%E5%BD%92%E5%B7%A2%E4%B8%BB%E4%BA%BA%E6%BF%80%E5%8A%A8%E5%90%B9%E5%93%A8%E8%BF%8E%E6%8E%A5&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 9,
|
||||
"title": "中国排面给全世界亿点点震撼",
|
||||
"desc": "",
|
||||
"score": "7042854",
|
||||
"score_desc": "704.29w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/986b69bb82a32bbd72f4c90281ece503",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E6%8E%92%E9%9D%A2%E7%BB%99%E5%85%A8%E4%B8%96%E7%95%8C%E4%BA%BF%E7%82%B9%E7%82%B9%E9%9C%87%E6%92%BC&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 10,
|
||||
"title": "8万只气球缘何直径都是26厘米左右",
|
||||
"desc": "",
|
||||
"score": "6943236",
|
||||
"score_desc": "694.32w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/783293899ac972283b13501deb5772fa",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=8%E4%B8%87%E5%8F%AA%E6%B0%94%E7%90%83%E7%BC%98%E4%BD%95%E7%9B%B4%E5%BE%84%E9%83%BD%E6%98%AF26%E5%8E%98%E7%B1%B3%E5%B7%A6%E5%8F%B3&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 11,
|
||||
"title": "江苏足协辟谣“苏超”要改名",
|
||||
"desc": "近日,有部分自媒体称“苏超”已改名,对此,江苏省足协回应:“苏超”没有改名,也没有想过要改名。",
|
||||
"score": "6853163",
|
||||
"score_desc": "685.32w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/fe16124a5cd018feee2e941d05850e00",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%B1%9F%E8%8B%8F%E8%B6%B3%E5%8D%8F%E8%BE%9F%E8%B0%A3%E2%80%9C%E8%8B%8F%E8%B6%85%E2%80%9D%E8%A6%81%E6%94%B9%E5%90%8D&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 12,
|
||||
"title": "金正恩只回了韩议长一个字",
|
||||
"desc": "",
|
||||
"score": "6760236",
|
||||
"score_desc": "676.02w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/68824cd0db12d3d6b71f6d79dc9cd1e4",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E9%87%91%E6%AD%A3%E6%81%A9%E5%8F%AA%E5%9B%9E%E4%BA%86%E9%9F%A9%E8%AE%AE%E9%95%BF%E4%B8%80%E4%B8%AA%E5%AD%97&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 13,
|
||||
"title": "特朗普称看了九三阅兵:很精彩很震撼",
|
||||
"desc": "",
|
||||
"score": "6656922",
|
||||
"score_desc": "665.69w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/bb902e423148eb1e83e78955f2eb9adb",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E7%89%B9%E6%9C%97%E6%99%AE%E7%A7%B0%E7%9C%8B%E4%BA%86%E4%B9%9D%E4%B8%89%E9%98%85%E5%85%B5%EF%BC%9A%E5%BE%88%E7%B2%BE%E5%BD%A9%E5%BE%88%E9%9C%87%E6%92%BC&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 14,
|
||||
"title": "韩国高铁站直播九三阅兵",
|
||||
"desc": "",
|
||||
"score": "6566970",
|
||||
"score_desc": "656.7w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/b68cb01b4b20989cea82c78c9fe39c3b",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E9%9F%A9%E5%9B%BD%E9%AB%98%E9%93%81%E7%AB%99%E7%9B%B4%E6%92%AD%E4%B9%9D%E4%B8%89%E9%98%85%E5%85%B5&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 15,
|
||||
"title": "在中国的加沙人看阅兵时落泪",
|
||||
"desc": "",
|
||||
"score": "6476621",
|
||||
"score_desc": "647.66w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/f16f082786ac14ea20dc709c527dec4b",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E5%9C%A8%E4%B8%AD%E5%9B%BD%E7%9A%84%E5%8A%A0%E6%B2%99%E4%BA%BA%E7%9C%8B%E9%98%85%E5%85%B5%E6%97%B6%E8%90%BD%E6%B3%AA&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 16,
|
||||
"title": "专家:东风-61出现改变命名规则",
|
||||
"desc": "",
|
||||
"score": "6376137",
|
||||
"score_desc": "637.61w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/66c1c659e7b1a37732b2735253716d60",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B8%93%E5%AE%B6%EF%BC%9A%E4%B8%9C%E9%A3%8E-61%E5%87%BA%E7%8E%B0%E6%94%B9%E5%8F%98%E5%91%BD%E5%90%8D%E8%A7%84%E5%88%99&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 17,
|
||||
"title": "军嫂盯着徒步方队找丈夫迷糊了",
|
||||
"desc": "",
|
||||
"score": "6274961",
|
||||
"score_desc": "627.5w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/90ac62b9f3b3365dc7fed40c62259a9f",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E5%86%9B%E5%AB%82%E7%9B%AF%E7%9D%80%E5%BE%92%E6%AD%A5%E6%96%B9%E9%98%9F%E6%89%BE%E4%B8%88%E5%A4%AB%E8%BF%B7%E7%B3%8A%E4%BA%86&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 18,
|
||||
"title": "普京调侃佩斯科夫:懒虫 不想工作",
|
||||
"desc": "",
|
||||
"score": "6180590",
|
||||
"score_desc": "618.06w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/8e9fae0b3a1b23049cfdb9323d6a1efe",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%99%AE%E4%BA%AC%E8%B0%83%E4%BE%83%E4%BD%A9%E6%96%AF%E7%A7%91%E5%A4%AB%EF%BC%9A%E6%87%92%E8%99%AB+%E4%B8%8D%E6%83%B3%E5%B7%A5%E4%BD%9C&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 19,
|
||||
"title": "原陆军第31集团军军长王昭堃逝世",
|
||||
"desc": "",
|
||||
"score": "6089180",
|
||||
"score_desc": "608.92w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/778f1aa16cdfc4db09926956ae5b5741",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E5%8E%9F%E9%99%86%E5%86%9B%E7%AC%AC31%E9%9B%86%E5%9B%A2%E5%86%9B%E5%86%9B%E9%95%BF%E7%8E%8B%E6%98%AD%E5%A0%83%E9%80%9D%E4%B8%96&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 20,
|
||||
"title": "“防霸凌”儿童指纹水杯被吐槽费妈",
|
||||
"desc": "",
|
||||
"score": "5986581",
|
||||
"score_desc": "598.66w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/c590f4412c1aa6904b65a94cba7de275",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E2%80%9C%E9%98%B2%E9%9C%B8%E5%87%8C%E2%80%9D%E5%84%BF%E7%AB%A5%E6%8C%87%E7%BA%B9%E6%B0%B4%E6%9D%AF%E8%A2%AB%E5%90%90%E6%A7%BD%E8%B4%B9%E5%A6%88&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 21,
|
||||
"title": "特朗普下令重振美国军队",
|
||||
"desc": "",
|
||||
"score": "5902417",
|
||||
"score_desc": "590.24w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/de99b4697f6d926890dc31d686c1222c",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E7%89%B9%E6%9C%97%E6%99%AE%E4%B8%8B%E4%BB%A4%E9%87%8D%E6%8C%AF%E7%BE%8E%E5%9B%BD%E5%86%9B%E9%98%9F&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 22,
|
||||
"title": "间谍张某某死缓:出轨外国女官员生子",
|
||||
"desc": "",
|
||||
"score": "5790606",
|
||||
"score_desc": "579.06w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/f93c1366d41c7cfbb2383dcb17449c28",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E9%97%B4%E8%B0%8D%E5%BC%A0%E6%9F%90%E6%9F%90%E6%AD%BB%E7%BC%93%EF%BC%9A%E5%87%BA%E8%BD%A8%E5%A4%96%E5%9B%BD%E5%A5%B3%E5%AE%98%E5%91%98%E7%94%9F%E5%AD%90&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 23,
|
||||
"title": "5万余人观礼离场后干干净净",
|
||||
"desc": "",
|
||||
"score": "5717616",
|
||||
"score_desc": "571.76w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/53c6b971cef08daf3104bb5133b4b6ed",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=5%E4%B8%87%E4%BD%99%E4%BA%BA%E8%A7%82%E7%A4%BC%E7%A6%BB%E5%9C%BA%E5%90%8E%E5%B9%B2%E5%B9%B2%E5%87%80%E5%87%80&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 24,
|
||||
"title": "普京乘机回国 王毅送行",
|
||||
"desc": "",
|
||||
"score": "5607811",
|
||||
"score_desc": "560.78w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/5f7afddd2e0a570573b245b6f31a1338",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E6%99%AE%E4%BA%AC%E4%B9%98%E6%9C%BA%E5%9B%9E%E5%9B%BD+%E7%8E%8B%E6%AF%85%E9%80%81%E8%A1%8C&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 25,
|
||||
"title": "刘老庄连战旗为何多了一个点",
|
||||
"desc": "",
|
||||
"score": "5513446",
|
||||
"score_desc": "551.34w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/7084449234aed77c74438ca263fdcd58",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E5%88%98%E8%80%81%E5%BA%84%E8%BF%9E%E6%88%98%E6%97%97%E4%B8%BA%E4%BD%95%E5%A4%9A%E4%BA%86%E4%B8%80%E4%B8%AA%E7%82%B9&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 26,
|
||||
"title": "迎面感受东风-61东风-5C的视觉冲击",
|
||||
"desc": "",
|
||||
"score": "5426660",
|
||||
"score_desc": "542.67w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/40210a63cf69ddbbedbe59a19730e374",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E8%BF%8E%E9%9D%A2%E6%84%9F%E5%8F%97%E4%B8%9C%E9%A3%8E-61%E4%B8%9C%E9%A3%8E-5C%E7%9A%84%E8%A7%86%E8%A7%89%E5%86%B2%E5%87%BB&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 27,
|
||||
"title": "阅兵当天的北京处处都有追飞机的人",
|
||||
"desc": "",
|
||||
"score": "5336487",
|
||||
"score_desc": "533.65w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/1513230ae41ba37f680dccbc526b7145",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E9%98%85%E5%85%B5%E5%BD%93%E5%A4%A9%E7%9A%84%E5%8C%97%E4%BA%AC%E5%A4%84%E5%A4%84%E9%83%BD%E6%9C%89%E8%BF%BD%E9%A3%9E%E6%9C%BA%E7%9A%84%E4%BA%BA&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 28,
|
||||
"title": "歼-35大片来了",
|
||||
"desc": "",
|
||||
"score": "5240364",
|
||||
"score_desc": "524.04w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/017c3b52514fb3ae83405da1da5fc350",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%AD%BC-35%E5%A4%A7%E7%89%87%E6%9D%A5%E4%BA%86&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 29,
|
||||
"title": "普京透露与特朗普“车内密谈”细节",
|
||||
"desc": "",
|
||||
"score": "5123571",
|
||||
"score_desc": "512.36w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/5548e90353e4696a1116ffc0e65e086d",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%99%AE%E4%BA%AC%E9%80%8F%E9%9C%B2%E4%B8%8E%E7%89%B9%E6%9C%97%E6%99%AE%E2%80%9C%E8%BD%A6%E5%86%85%E5%AF%86%E8%B0%88%E2%80%9D%E7%BB%86%E8%8A%82&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 30,
|
||||
"title": "和平鸽从天津到北京出差参加阅兵",
|
||||
"desc": "",
|
||||
"score": "5037077",
|
||||
"score_desc": "503.71w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/f4558c31275119cfab564cadeddf6f50",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E5%92%8C%E5%B9%B3%E9%B8%BD%E4%BB%8E%E5%A4%A9%E6%B4%A5%E5%88%B0%E5%8C%97%E4%BA%AC%E5%87%BA%E5%B7%AE%E5%8F%82%E5%8A%A0%E9%98%85%E5%85%B5&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 31,
|
||||
"title": "王毅送中国跑鞋 匈牙利外长爱不释手",
|
||||
"desc": "",
|
||||
"score": "4950481",
|
||||
"score_desc": "495.05w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/95df9511f4c0951f823f387f3286c029",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E7%8E%8B%E6%AF%85%E9%80%81%E4%B8%AD%E5%9B%BD%E8%B7%91%E9%9E%8B+%E5%8C%88%E7%89%99%E5%88%A9%E5%A4%96%E9%95%BF%E7%88%B1%E4%B8%8D%E9%87%8A%E6%89%8B&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 32,
|
||||
"title": "郑钦文晒东风5C帅照",
|
||||
"desc": "",
|
||||
"score": "4841678",
|
||||
"score_desc": "484.17w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/5e2fec1c090ce966a2dd89071342d3e9",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E9%83%91%E9%92%A6%E6%96%87%E6%99%92%E4%B8%9C%E9%A3%8E5C%E5%B8%85%E7%85%A7&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 33,
|
||||
"title": "阅兵当天 北京街头成为别样观礼台",
|
||||
"desc": "",
|
||||
"score": "4760831",
|
||||
"score_desc": "476.08w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/a6495a07da318dc9644f77de370b8035",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E9%98%85%E5%85%B5%E5%BD%93%E5%A4%A9+%E5%8C%97%E4%BA%AC%E8%A1%97%E5%A4%B4%E6%88%90%E4%B8%BA%E5%88%AB%E6%A0%B7%E8%A7%82%E7%A4%BC%E5%8F%B0&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 34,
|
||||
"title": "华春莹与记者互动:我的心情和你一样",
|
||||
"desc": "",
|
||||
"score": "4651512",
|
||||
"score_desc": "465.15w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/4377037f24b931479efc20e2a7b87776",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E5%8D%8E%E6%98%A5%E8%8E%B9%E4%B8%8E%E8%AE%B0%E8%80%85%E4%BA%92%E5%8A%A8%EF%BC%9A%E6%88%91%E7%9A%84%E5%BF%83%E6%83%85%E5%92%8C%E4%BD%A0%E4%B8%80%E6%A0%B7&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 35,
|
||||
"title": "父亲称女民兵方队领队是全家的骄傲",
|
||||
"desc": "",
|
||||
"score": "4566469",
|
||||
"score_desc": "456.65w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/79b1620e703b1e73fd5db686d6314ea0",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E7%88%B6%E4%BA%B2%E7%A7%B0%E5%A5%B3%E6%B0%91%E5%85%B5%E6%96%B9%E9%98%9F%E9%A2%86%E9%98%9F%E6%98%AF%E5%85%A8%E5%AE%B6%E7%9A%84%E9%AA%84%E5%82%B2&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 36,
|
||||
"title": "宝宝出生恰逢阅兵 家人取名袁安阅",
|
||||
"desc": "",
|
||||
"score": "4470561",
|
||||
"score_desc": "447.06w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/a5063fd737daf1da7a969e36ab672ed8",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E5%AE%9D%E5%AE%9D%E5%87%BA%E7%94%9F%E6%81%B0%E9%80%A2%E9%98%85%E5%85%B5+%E5%AE%B6%E4%BA%BA%E5%8F%96%E5%90%8D%E8%A2%81%E5%AE%89%E9%98%85&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 37,
|
||||
"title": "特朗普承认观看中国阅兵",
|
||||
"desc": "",
|
||||
"score": "4353451",
|
||||
"score_desc": "435.35w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/e7c27a7640bc0f9d25dcd7ad79026ce7",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E7%89%B9%E6%9C%97%E6%99%AE%E6%89%BF%E8%AE%A4%E8%A7%82%E7%9C%8B%E4%B8%AD%E5%9B%BD%E9%98%85%E5%85%B5&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 38,
|
||||
"title": "一地官宣:3孩家庭购房补贴20万元",
|
||||
"desc": "",
|
||||
"score": "4290101",
|
||||
"score_desc": "429.01w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/507444a742944d2ed619b480fdab147e",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B8%80%E5%9C%B0%E5%AE%98%E5%AE%A3%EF%BC%9A3%E5%AD%A9%E5%AE%B6%E5%BA%AD%E8%B4%AD%E6%88%BF%E8%A1%A5%E8%B4%B420%E4%B8%87%E5%85%83&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 39,
|
||||
"title": "OpenAI启动员工百亿美元售股",
|
||||
"desc": "",
|
||||
"score": "4172580",
|
||||
"score_desc": "417.26w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/fc06e36007c4b957bee693b9abe64693",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=OpenAI%E5%90%AF%E5%8A%A8%E5%91%98%E5%B7%A5%E7%99%BE%E4%BA%BF%E7%BE%8E%E5%85%83%E5%94%AE%E8%82%A1&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 40,
|
||||
"title": "想入军迷圈的 现在正是好时候",
|
||||
"desc": "",
|
||||
"score": "4098627",
|
||||
"score_desc": "409.86w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/d5bde24cc4eed187d500f3e7a9d73f2d",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%83%B3%E5%85%A5%E5%86%9B%E8%BF%B7%E5%9C%88%E7%9A%84+%E7%8E%B0%E5%9C%A8%E6%AD%A3%E6%98%AF%E5%A5%BD%E6%97%B6%E5%80%99&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 41,
|
||||
"title": "九三阅兵台湾线上播放超500万",
|
||||
"desc": "",
|
||||
"score": "3999782",
|
||||
"score_desc": "399.98w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/ebfee25839294c24ca24af788fbd92bd",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B9%9D%E4%B8%89%E9%98%85%E5%85%B5%E5%8F%B0%E6%B9%BE%E7%BA%BF%E4%B8%8A%E6%92%AD%E6%94%BE%E8%B6%85500%E4%B8%87&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 42,
|
||||
"title": "信鸽协会回应市民救助落水和平鸽",
|
||||
"desc": "",
|
||||
"score": "3886482",
|
||||
"score_desc": "388.65w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/dc5ce78481f36774922add0eb7076ec7",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%BF%A1%E9%B8%BD%E5%8D%8F%E4%BC%9A%E5%9B%9E%E5%BA%94%E5%B8%82%E6%B0%91%E6%95%91%E5%8A%A9%E8%90%BD%E6%B0%B4%E5%92%8C%E5%B9%B3%E9%B8%BD&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 43,
|
||||
"title": "台退将看阅兵新装备直呼自己是军盲",
|
||||
"desc": "",
|
||||
"score": "3794294",
|
||||
"score_desc": "379.43w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/686bb8c544ec3d0bc9f01f7ccd31195c",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E5%8F%B0%E9%80%80%E5%B0%86%E7%9C%8B%E9%98%85%E5%85%B5%E6%96%B0%E8%A3%85%E5%A4%87%E7%9B%B4%E5%91%BC%E8%87%AA%E5%B7%B1%E6%98%AF%E5%86%9B%E7%9B%B2&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 44,
|
||||
"title": "多国来华领导人接连发声",
|
||||
"desc": "",
|
||||
"score": "3679787",
|
||||
"score_desc": "367.98w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/a7f9ac9aaeb54422c70870ac9ab36d09",
|
||||
"type": "3",
|
||||
"type_desc": "热",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/54a1ed72d00cd07334860b0509489d8b.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E5%A4%9A%E5%9B%BD%E6%9D%A5%E5%8D%8E%E9%A2%86%E5%AF%BC%E4%BA%BA%E6%8E%A5%E8%BF%9E%E5%8F%91%E5%A3%B0&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 45,
|
||||
"title": "河南佛教协会:释永信枉费僧众信任",
|
||||
"desc": "",
|
||||
"score": "3589427",
|
||||
"score_desc": "358.94w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/279b2b9632b9d7776a62fccefbc058db",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E6%B2%B3%E5%8D%97%E4%BD%9B%E6%95%99%E5%8D%8F%E4%BC%9A%EF%BC%9A%E9%87%8A%E6%B0%B8%E4%BF%A1%E6%9E%89%E8%B4%B9%E5%83%A7%E4%BC%97%E4%BF%A1%E4%BB%BB&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 46,
|
||||
"title": "揭秘阅兵地铁专列:143趟车接送2万人",
|
||||
"desc": "",
|
||||
"score": "3501916",
|
||||
"score_desc": "350.19w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/711c2769ad7f6071171e7c11908c9f7a",
|
||||
"type": "1",
|
||||
"type_desc": "新",
|
||||
"type_icon": "https://search-operate.cdn.bcebos.com/42e626c5469cc4cd3b91131bcfe53d44.png",
|
||||
"url": "https://www.baidu.com/s?wd=%E6%8F%AD%E7%A7%98%E9%98%85%E5%85%B5%E5%9C%B0%E9%93%81%E4%B8%93%E5%88%97%EF%BC%9A143%E8%B6%9F%E8%BD%A6%E6%8E%A5%E9%80%812%E4%B8%87%E4%BA%BA&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 47,
|
||||
"title": "苑举正观礼听到《黄河大合唱》落泪",
|
||||
"desc": "",
|
||||
"score": "3431345",
|
||||
"score_desc": "343.13w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/ea02d87734137d71f4a1529a5cb864c7",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E8%8B%91%E4%B8%BE%E6%AD%A3%E8%A7%82%E7%A4%BC%E5%90%AC%E5%88%B0%E3%80%8A%E9%BB%84%E6%B2%B3%E5%A4%A7%E5%90%88%E5%94%B1%E3%80%8B%E8%90%BD%E6%B3%AA&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 48,
|
||||
"title": "九三阅兵解锁了这些“首次”",
|
||||
"desc": "",
|
||||
"score": "3339123",
|
||||
"score_desc": "333.91w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/35812fb7bcf6ff0d71f52f60fb9055fa",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B9%9D%E4%B8%89%E9%98%85%E5%85%B5%E8%A7%A3%E9%94%81%E4%BA%86%E8%BF%99%E4%BA%9B%E2%80%9C%E9%A6%96%E6%AC%A1%E2%80%9D&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 49,
|
||||
"title": "中国首起反规避调查",
|
||||
"desc": "",
|
||||
"score": "3210675",
|
||||
"score_desc": "321.07w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/fa9ce1dd50ddb58eab40b7de920a0d79",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E4%B8%AD%E5%9B%BD%E9%A6%96%E8%B5%B7%E5%8F%8D%E8%A7%84%E9%81%BF%E8%B0%83%E6%9F%A5&sa=fyb_news&rsv_dl=fyb_news"
|
||||
},
|
||||
{
|
||||
"rank": 50,
|
||||
"title": "王楚钦:被祖国的强大深深触动",
|
||||
"desc": "",
|
||||
"score": "3147784",
|
||||
"score_desc": "314.78w",
|
||||
"cover": "https://fyb-2.cdn.bcebos.com/hotboard_image/d8ae151e1eefdec0449a52574f58ee51",
|
||||
"type": "0",
|
||||
"type_desc": null,
|
||||
"type_icon": null,
|
||||
"url": "https://www.baidu.com/s?wd=%E7%8E%8B%E6%A5%9A%E9%92%A6%EF%BC%9A%E8%A2%AB%E7%A5%96%E5%9B%BD%E7%9A%84%E5%BC%BA%E5%A4%A7%E6%B7%B1%E6%B7%B1%E8%A7%A6%E5%8A%A8&sa=fyb_news&rsv_dl=fyb_news"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user