优化结果

This commit is contained in:
2025-09-15 19:08:47 +08:00
parent 72084a8782
commit dcfa89e63c
357 changed files with 16156 additions and 1589 deletions

View File

@@ -0,0 +1,582 @@
/* 现代化猫眼票房排行榜样式 */
/* 全局重置和基础样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* 主色调 */
--primary-color: #667eea;
--primary-light: #764ba2;
--secondary-color: #f093fb;
--accent-color: #4facfe;
/* 中性色 */
--text-primary: #2d3748;
--text-secondary: #4a5568;
--text-muted: #718096;
--bg-primary: #ffffff;
--bg-secondary: #f7fafc;
--bg-tertiary: #edf2f7;
/* 状态色 */
--success-color: #48bb78;
--warning-color: #ed8936;
--error-color: #f56565;
/* 阴影 */
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
/* 圆角 */
--radius-sm: 6px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 24px;
/* 间距 */
--space-xs: 4px;
--space-sm: 8px;
--space-md: 16px;
--space-lg: 24px;
--space-xl: 32px;
--space-2xl: 48px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: var(--text-primary);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
/* 动态背景效果 */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
z-index: -1;
animation: backgroundShift 20s ease-in-out infinite;
}
@keyframes backgroundShift {
0%, 100% {
transform: scale(1) rotate(0deg);
opacity: 0.8;
}
50% {
transform: scale(1.1) rotate(180deg);
opacity: 0.6;
}
}
/* 主容器 */
.container {
max-width: 900px;
margin: var(--space-lg) auto;
padding: var(--space-xl);
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-xl);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
animation: slideUp 0.8s ease-out;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 头部样式 */
.header {
text-align: center;
margin-bottom: var(--space-2xl);
padding-bottom: var(--space-lg);
border-bottom: 2px solid var(--bg-tertiary);
position: relative;
}
.header::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
border-radius: 2px;
}
.header h1 {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-md);
margin-bottom: var(--space-md);
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 700;
letter-spacing: -0.02em;
flex-wrap: wrap;
}
.header h1 .icon {
font-size: 1.2em;
animation: bounce 2s infinite;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-8px);
}
60% {
transform: translateY(-4px);
}
}
.header h1 .title-text {
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
position: relative;
}
.header h1 .update-badge {
font-size: 0.4em;
background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
color: white;
padding: var(--space-xs) var(--space-md);
border-radius: var(--radius-xl);
font-weight: 600;
box-shadow: var(--shadow-md);
animation: pulse 3s infinite;
white-space: nowrap;
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
box-shadow: var(--shadow-md);
}
50% {
transform: scale(1.05);
box-shadow: var(--shadow-lg);
}
}
.header-desc {
color: var(--text-secondary);
font-size: 1.1rem;
font-weight: 500;
margin-top: var(--space-sm);
}
/* 加载状态 */
.loading {
text-align: center;
padding: var(--space-2xl);
color: var(--text-secondary);
}
.spinner {
width: 40px;
height: 40px;
margin: 0 auto var(--space-md);
border: 3px solid var(--bg-tertiary);
border-top: 3px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 内容区域 */
.content {
animation: fadeIn 0.6s ease-out 0.2s both;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.ranking-title {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: var(--space-lg);
text-align: center;
position: relative;
}
/* 电影列表 */
.movie-list {
display: flex;
flex-direction: column;
gap: var(--space-md);
}
.movie-item {
display: flex;
align-items: center;
gap: var(--space-md);
padding: var(--space-lg);
background: var(--bg-primary);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
border: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.movie-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.02) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.movie-item:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: rgba(102, 126, 234, 0.2);
}
.movie-item:hover::before {
opacity: 1;
}
/* 特殊排名样式 */
.movie-item.top-1 {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--bg-primary) 100%);
border-color: rgba(255, 215, 0, 0.3);
}
.movie-item.top-2 {
background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, var(--bg-primary) 100%);
border-color: rgba(192, 192, 192, 0.3);
}
.movie-item.top-3 {
background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, var(--bg-primary) 100%);
border-color: rgba(205, 127, 50, 0.3);
}
/* 排名徽章 */
.movie-rank {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: var(--radius-md);
font-size: 1.2rem;
font-weight: 700;
flex-shrink: 0;
transition: all 0.3s ease;
position: relative;
}
.movie-item:hover .movie-rank {
transform: scale(1.1);
}
.movie-rank.gold {
background: linear-gradient(135deg, #ffd700, #ffb700);
color: white;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.movie-rank.silver {
background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
color: white;
box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}
.movie-rank.bronze {
background: linear-gradient(135deg, #cd7f32, #b06728);
color: white;
box-shadow: 0 4px 15px rgba(205, 127, 50, 0.4);
}
.movie-rank.regular {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
/* 电影内容 */
.movie-content {
flex: 1;
display: flex;
flex-direction: column;
gap: var(--space-sm);
min-width: 0;
}
.movie-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.movie-meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-md);
flex-wrap: wrap;
}
.movie-year {
color: var(--text-muted);
font-size: 0.85rem;
background: var(--bg-tertiary);
padding: var(--space-xs) var(--space-sm);
border-radius: var(--radius-sm);
font-weight: 500;
}
.movie-boxoffice {
font-weight: 700;
color: var(--warning-color);
font-size: 1rem;
white-space: nowrap;
}
/* 更新时间 */
.update-time {
text-align: center;
margin-top: var(--space-lg);
padding: var(--space-md);
background: var(--bg-secondary);
border-radius: var(--radius-md);
color: var(--text-secondary);
font-size: 0.9rem;
border: 1px solid var(--bg-tertiary);
}
/* 错误状态 */
.error {
text-align: center;
padding: var(--space-2xl);
color: var(--error-color);
}
.error h3 {
font-size: 1.2rem;
margin-bottom: var(--space-md);
}
.error p {
margin-bottom: var(--space-sm);
color: var(--text-secondary);
}
/* 响应式设计 */
@media (max-width: 768px) {
.container {
margin: var(--space-md);
padding: var(--space-lg);
border-radius: var(--radius-lg);
}
.header {
margin-bottom: var(--space-lg);
padding-bottom: var(--space-md);
}
.header h1 {
font-size: 1.8rem;
gap: var(--space-sm);
}
.header h1 .update-badge {
font-size: 0.35em;
padding: 2px var(--space-sm);
}
.movie-item {
padding: var(--space-md);
gap: var(--space-sm);
}
.movie-rank {
width: 42px;
height: 42px;
font-size: 1rem;
}
.movie-title {
font-size: 1rem;
}
.movie-meta {
gap: var(--space-sm);
}
.movie-year {
font-size: 0.8rem;
}
.movie-boxoffice {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.container {
margin: var(--space-sm);
padding: var(--space-md);
}
.header h1 {
font-size: 1.6rem;
flex-direction: column;
gap: var(--space-xs);
}
.movie-list {
gap: var(--space-sm);
}
.movie-item {
padding: var(--space-sm);
}
.movie-rank {
width: 38px;
height: 38px;
font-size: 0.9rem;
}
.movie-title {
font-size: 0.95rem;
}
.movie-meta {
flex-direction: column;
align-items: flex-start;
gap: var(--space-xs);
}
}
/* 减少动画以节省电池 */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
body::before {
animation: none;
}
}
/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
:root {
--text-primary: #f7fafc;
--text-secondary: #e2e8f0;
--text-muted: #a0aec0;
--bg-primary: #2d3748;
--bg-secondary: #4a5568;
--bg-tertiary: #718096;
}
body {
background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}
.container {
background: rgba(45, 55, 72, 0.95);
border-color: rgba(255, 255, 255, 0.1);
}
.movie-item {
background: var(--bg-primary);
border-color: rgba(255, 255, 255, 0.1);
}
.movie-item:hover {
border-color: rgba(102, 126, 234, 0.4);
}
}
/* 打印样式 */
@media print {
body {
background: white;
color: black;
}
body::before {
display: none;
}
.container {
background: white;
box-shadow: none;
border: 1px solid #ccc;
}
.movie-item {
break-inside: avoid;
box-shadow: none;
border: 1px solid #ddd;
}
.header h1 .update-badge {
background: #666;
}
}

View File

@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="猫眼票房排行榜 - 展示全球电影总票房排行榜">
<meta name="keywords" content="猫眼, 票房, 排行榜, 电影票房, 全球票房">
<title>猫眼票房排行榜 | 全球电影总票房</title>
<!-- 引入CSS样式 -->
<link rel="stylesheet" href="css/style.css">
<!-- 网站图标SVG内联为data URL避免外部依赖 -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎬</text></svg>">
</head>
<body>
<div class="container">
<!-- 页面头部 -->
<header class="header">
<h1>
<span class="icon">🎬</span>
<span class="title-text">猫眼票房排行榜</span>
<span class="update-badge">实时更新</span>
</h1>
<p class="header-desc">全球电影总票房榜单 | 权威数据 | 实时更新</p>
</header>
<!-- 加载状态 -->
<div id="loading" class="loading">
<div class="spinner"></div>
<p>正在加载票房数据...</p>
</div>
<!-- 内容区域 -->
<main id="ranking-content" class="content" style="display: none;"></main>
</div>
<!-- 引入JavaScript -->
<script src="js/script.js"></script>
</body>
</html>

View File

@@ -0,0 +1,266 @@
// 猫眼票房排行榜 - JavaScript 实现
const API = {
endpoints: [],
currentIndex: 0,
params: {
encoding: 'json'
},
localFallback: '返回接口.json',
// 初始化API接口列表
async init() {
try {
const res = await fetch('./接口集合.json');
const endpoints = await res.json();
this.endpoints = endpoints.map(endpoint => `${endpoint}/v2/maoyan`);
} catch (e) {
// 如果无法加载接口集合,使用默认接口
this.endpoints = ['https://60s.api.shumengya.top/v2/maoyan'];
}
},
// 获取当前接口URL
getCurrentUrl() {
if (this.endpoints.length === 0) return null;
const url = new URL(this.endpoints[this.currentIndex]);
Object.entries(this.params).forEach(([k, v]) => url.searchParams.append(k, v));
return url.toString();
},
// 切换到下一个接口
switchToNext() {
this.currentIndex = (this.currentIndex + 1) % this.endpoints.length;
return this.currentIndex < this.endpoints.length;
},
// 重置到第一个接口
reset() {
this.currentIndex = 0;
}
};
let elements = {};
// 初始化
window.addEventListener('DOMContentLoaded', () => {
initElements();
loadMaoyanList();
});
function initElements() {
elements = {
container: document.getElementById('ranking-content'),
loading: document.getElementById('loading'),
updateTime: document.getElementById('api-update-time'),
statsTotal: document.getElementById('stats-total'),
statsTop10: document.getElementById('stats-top10')
};
}
async function loadMaoyanList() {
try {
showLoading(true);
// 优先从线上API请求
let data = await fetchFromAPI();
// 如果线上失败,尝试从本地返回接口.json加载
if (!data) {
data = await fetchFromLocal();
}
if (!data || data.code !== 200 || !data.data) {
throw new Error(data && data.message ? data.message : '未能获取到有效数据');
}
renderRanking(data.data);
} catch (error) {
console.error('加载排行榜失败:', error);
showError(error.message || '加载失败,请稍后重试');
} finally {
showLoading(false);
}
}
async function fetchFromAPI() {
// 初始化API接口列表
await API.init();
// 重置API索引到第一个接口
API.reset();
// 尝试所有API接口
for (let i = 0; i < API.endpoints.length; i++) {
try {
const url = API.getCurrentUrl();
console.log(`尝试接口 ${i + 1}/${API.endpoints.length}: ${url}`);
const resp = await fetch(url, {
cache: 'no-store',
timeout: 10000 // 10秒超时
});
if (!resp.ok) {
throw new Error(`HTTP ${resp.status}: ${resp.statusText}`);
}
const data = await resp.json();
if (data && data.code === 200) {
console.log(`接口 ${i + 1} 请求成功`);
return data;
}
throw new Error(data && data.message ? data.message : '接口返回异常');
} catch (e) {
console.warn(`接口 ${i + 1} 失败:`, e.message);
// 如果不是最后一个接口,切换到下一个
if (i < API.endpoints.length - 1) {
API.switchToNext();
continue;
}
// 所有接口都失败了
console.warn('所有远程接口都失败,尝试本地数据');
return null;
}
}
}
async function fetchFromLocal() {
try {
const resp = await fetch(API.localFallback + `?t=${Date.now()}`);
if (!resp.ok) throw new Error(`本地文件HTTP ${resp.status}`);
const data = await resp.json();
return data;
} catch (e) {
console.error('读取本地返回接口.json失败:', e);
return null;
}
}
function renderRanking(payload) {
const { list = [], tip = '', update_time = '', update_time_at } = payload || {};
// 更新时间
if (elements.updateTime) {
elements.updateTime.textContent = update_time ? `更新时间:${update_time}` : '';
}
// 统计信息
if (elements.statsTotal) {
elements.statsTotal.textContent = list.length;
}
if (elements.statsTop10) {
elements.statsTop10.textContent = Math.min(10, list.length);
}
// 渲染列表
const html = `
<section class="ranking-container">
<h2 class="ranking-title">全球电影总票房排行榜</h2>
<div class="movie-list">
${list.map(item => renderMovieItem(item)).join('')}
</div>
</section>
${tip ? `<div class="update-time">${escapeHtml(tip)}</div>` : ''}
${update_time ? `<div class="update-time" id="api-update-time">更新时间:${escapeHtml(update_time)}</div>` : ''}
`;
elements.container.innerHTML = html;
elements.container.classList.add('fade-in');
}
// 格式化票房数据,将数字转换为更易读的形式
function formatBoxOffice(value) {
if (!value) return '未知';
// 将字符串转换为数字
const num = typeof value === 'string' ? parseFloat(value.replace(/[^0-9.]/g, '')) : value;
if (isNaN(num)) return value;
if (num >= 100000000) {
return (num / 100000000).toFixed(2) + ' 亿';
} else if (num >= 10000) {
return (num / 10000).toFixed(2) + ' 万';
} else {
return num.toLocaleString();
}
}
function renderMovieItem(item) {
const rank = item.rank;
const cls = rank === 1 ? 'top-1' : rank === 2 ? 'top-2' : rank === 3 ? 'top-3' : '';
const badgeCls = rank === 1 ? 'gold' : rank === 2 ? 'silver' : rank === 3 ? 'bronze' : 'regular';
// 格式化票房数据
const boxOffice = formatBoxOffice(item.boxoffice || item.box_office);
// 美化排名显示
let rankDisplay;
if (rank === 1) {
rankDisplay = '🏆';
} else if (rank === 2) {
rankDisplay = '🥈';
} else if (rank === 3) {
rankDisplay = '🥉';
} else {
rankDisplay = rank;
}
return `
<div class="movie-item ${cls}">
<div class="movie-rank ${badgeCls}">${rankDisplay}</div>
<div class="movie-content">
<div class="movie-title">${escapeHtml(item.movie_name)}</div>
<div class="movie-meta">
<span class="movie-year">${escapeHtml(item.release_year || '未知')}</span>
<span class="movie-boxoffice">¥${boxOffice}</span>
</div>
</div>
</div>`;
}
function formatCurrencyDesc(desc, num) {
if (desc && typeof desc === 'string' && desc.trim()) return desc;
if (typeof num === 'number') {
// 人民币按亿元显示
if (num >= 1e8) return (num / 1e8).toFixed(2) + '亿元';
if (num >= 1e4) return (num / 1e4).toFixed(2) + '万元';
return num.toLocaleString('zh-CN') + '元';
}
return '—';
}
function showLoading(show) {
if (elements.loading) elements.loading.style.display = show ? 'block' : 'none';
if (elements.container) elements.container.style.display = show ? 'none' : 'block';
}
function showError(message) {
if (!elements.container) return;
elements.container.innerHTML = `
<div class="error">
<h3>⚠️ 加载失败</h3>
<p>${escapeHtml(message)}</p>
<p>请稍后重试</p>
</div>
`;
elements.container.style.display = 'block';
}
function escapeHtml(text) {
if (text == null) return '';
const div = document.createElement('div');
div.textContent = String(text);
return div.innerHTML;
}
// 键盘刷新快捷键 Ctrl/Cmd + R 刷新数据区域(不刷新整页)
window.addEventListener('keydown', (e) => {
if ((e.ctrlKey || e.metaKey) && e.key.toLowerCase() === 'r') {
e.preventDefault();
loadMaoyanList();
}
});

View File

@@ -0,0 +1,3 @@
[
"https://60s.api.shumengya.top"
]

View File

@@ -0,0 +1,171 @@
{
"code": 200,
"message": "获取成功。数据来自官方/权威源头,以确保稳定与实时。开源地址 https://github.com/vikiboss/60s反馈群 595941841",
"data": {
"list": [
{
"rank": 1,
"maoyan_id": 243,
"movie_name": "阿凡达",
"release_year": "2009",
"box_office": 21200972239,
"box_office_desc": "212.01亿元"
},
{
"rank": 2,
"maoyan_id": 248172,
"movie_name": "复仇者联盟 4终局之战",
"release_year": "2019",
"box_office": 20299852689,
"box_office_desc": "203亿元"
},
{
"rank": 3,
"maoyan_id": 78461,
"movie_name": "阿凡达:水之道",
"release_year": "2022",
"box_office": 16825062887,
"box_office_desc": "168.25亿元"
},
{
"rank": 4,
"maoyan_id": 267,
"movie_name": "泰坦尼克号",
"release_year": "1997",
"box_office": 16423064756,
"box_office_desc": "164.23亿元"
},
{
"rank": 5,
"maoyan_id": 1294273,
"movie_name": "哪吒之魔童闹海",
"release_year": "2025",
"box_office": 15908714214,
"box_office_desc": "159.09亿元"
},
{
"rank": 6,
"maoyan_id": 78536,
"movie_name": "星球大战:原力觉醒",
"release_year": "2015",
"box_office": 15019898914,
"box_office_desc": "150.2亿元"
},
{
"rank": 7,
"maoyan_id": 248170,
"movie_name": "复仇者联盟 3无限战争",
"release_year": "2018",
"box_office": 14882882413,
"box_office_desc": "148.83亿元"
},
{
"rank": 8,
"maoyan_id": 1254435,
"movie_name": "蜘蛛侠:英雄无归",
"release_year": "2021",
"box_office": 14160042137,
"box_office_desc": "141.6亿元"
},
{
"rank": 9,
"maoyan_id": 1479534,
"movie_name": "头脑特工队 2",
"release_year": "2024",
"box_office": 12319141075,
"box_office_desc": "123.19亿元"
},
{
"rank": 10,
"maoyan_id": 78602,
"movie_name": "侏罗纪世界",
"release_year": "2015",
"box_office": 12120986621,
"box_office_desc": "121.21亿元"
},
{
"rank": 11,
"maoyan_id": 1189879,
"movie_name": "狮子王",
"release_year": "2019",
"box_office": 12051977766,
"box_office_desc": "120.52亿元"
},
{
"rank": 12,
"maoyan_id": 262,
"movie_name": "复仇者联盟",
"release_year": "2012",
"box_office": 11026033139,
"box_office_desc": "110.26亿元"
},
{
"rank": 13,
"maoyan_id": 78405,
"movie_name": "速度与激情 7",
"release_year": "2015",
"box_office": 10988354292,
"box_office_desc": "109.88亿元"
},
{
"rank": 14,
"maoyan_id": 341152,
"movie_name": "壮志凌云 2独行侠",
"release_year": "2022",
"box_office": 10845892091,
"box_office_desc": "108.46亿元"
},
{
"rank": 15,
"maoyan_id": 247949,
"movie_name": "冰雪奇缘 2",
"release_year": "2019",
"box_office": 10541240357,
"box_office_desc": "105.41亿元"
},
{
"rank": 16,
"maoyan_id": 344942,
"movie_name": "芭比",
"release_year": "2023",
"box_office": 10493054406,
"box_office_desc": "104.93亿元"
},
{
"rank": 17,
"maoyan_id": 78429,
"movie_name": "复仇者联盟 2奥创纪元",
"release_year": "2015",
"box_office": 10188347873,
"box_office_desc": "101.88亿元"
},
{
"rank": 18,
"maoyan_id": 1250896,
"movie_name": "超级马里奥兄弟大电影",
"release_year": "2023",
"box_office": 9868050757,
"box_office_desc": "98.68亿元"
},
{
"rank": 19,
"maoyan_id": 341138,
"movie_name": "黑豹",
"release_year": "2018",
"box_office": 9788853998,
"box_office_desc": "97.89亿元"
},
{
"rank": 20,
"maoyan_id": 916,
"movie_name": "哈利・波特与死亡圣器(下)",
"release_year": "2011",
"box_office": 9735002643,
"box_office_desc": "97.35亿元"
}
],
"tip": "注:内地票房数据实时更新,包括点映及预售票房。港澳台及海外票房为统计数据,每小时更新。汇率采用 2025年1月31日市场汇率1美元≈7.2514人民币",
"update_time": "2025/08/19 14:41:34",
"update_time_at": 1755585694385
}
}