Files
“shengyudong” 322ac74336 2025-12-25 upload
2025-12-25 11:16:59 +08:00

85 lines
10 KiB
HTML

<!doctype html><html lang="zh-CN" translate="no"><head><meta charset="utf-8"/><title>百家号</title><meta http-equiv="Cache-control" content="no-cache, no-store, must-revalidate"/><meta http-equiv="Pragma" content="no-cache"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><meta name="google" content="notranslate"/><link rel="shortcut icon" href="https://pic.rmb.bdstatic.com/10e1e2b43c35577e1315f0f6aad6ba24.vnd.microsoft.icon" type="image/x-icon"/><link rel="icon" sizes="any" mask href="https://pic.rmb.bdstatic.com/9d27933d6e757b56121d68936d6c287c.svg+xml"/><style>html,
body {
height: 100%;
}</style><script>this.globalThis || (this.globalThis = this)</script><script>// 获取指定名称的cookie
function getCookie(name) {
var strcookie = document.cookie; //获取cookie字符串
var arrcookie = strcookie.split('; '); //分割
//遍历匹配
for (var i = 0; i < arrcookie.length; i++) {
var arr = arrcookie[i].split('=');
if (arr[0] == name) {
return arr[1];
}
}
return '';
}
// 灰度
window.GRAY = +getCookie('gray') === 1;
function checkBrowserVersion(){
var ua = window.navigator.userAgent.toLowerCase();
var chromeRegex = /chrome\/([0-9]+(?:\.[0-9]+)*)/;
var safariRegex = /version\/([0-9]+(?:\.[0-9]+)*)/;
var chromeVersion = ua.match(chromeRegex);
if(chromeVersion){
return parseFloat(chromeVersion[1]) < 71;
}
var safariVersion = ua.match(safariRegex);
if(safariVersion){
return parseFloat(safariVersion[1]) < 11;
}
// ie浏览器全系列不支持
if (
window.ActiveXObject || "ActiveXObject" in window
|| ua.indexOf('msie') > -1
|| (ua.indexOf('trident') > -1 && ua.indexOf('rv:11.0') > -1)
) {
return true;
}
return false;
}
function checkBrowserVersionInit() {
if (checkBrowserVersion()) {
var script = document.createElement('script');
script.src = 'https://pic.rmb.bdstatic.com/activity/2025-1/1736150686981/5d4ffe766078.js';
script.type = 'text/javascript';
script.async = true;
document.head.appendChild(script);
}
}</script><script>var _hmt = _hmt || [];
(function () {
var hm = document.createElement('script');
hm.src = 'https://hm.baidu.com/hm.js?f7b8c775c6c8b6a716a75df506fb72df';
hm.async = true;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(hm, s);
})();</script><script>if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js')
.then(registration => {})
.catch(error => {
console.log('Service Worker 注册失败:', error);
});
});
}</script><script defer="defer" crossorigin src="https://code.bdstatic.com/npm/jquery@2.2.3/dist/jquery.min.js"></script><script defer="defer" crossorigin src="https://pic.rmb.bdstatic.com/activity/2024-12/1734526599744/b963f09a6c95.js"></script><script defer="defer" crossorigin src="https://pic.rmb.bdstatic.com/activity/2024-12/1734528167218/0aa022f8e4a3.js"></script><script defer="defer" src="https://now.bdstatic.com/store/v2/e8a15f8/fe-cms/d355bf3/js/main.2070cd47d7b629b5.js"></script></head><body onload="checkBrowserVersionInit();"><noscript>You need to enable JavaScript to run this app.</noscript><script>window.perfWhiteScreen = performance.now();</script><script>window.pageLoadStartTime = new Date().getTime();</script><div id="root"></div><style>#page-skeleton { position: fixed; top: 0; left: 0; width: 100vw; min-width: 1100px; height: 100vh; overflow: hidden; z-index: 9999; background-color: #f0f3f7; } #page-skeleton * { opacity: 1; transition: opacity 0.2s linear; } #page-skeleton.out * { opacity: 0; } @keyframes skeletonFlush { 0% { transform: translate3d(-100%, 0, 0); } 50% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(100%, 0, 0); } }</style><div id="page-skeleton"><div class="page-skeleton-bg" style="position: absolute; top: 0; left: 208px; right: 0; bottom: 0; background-repeat: no-repeat !important; background-size: 100% auto !important; background-position: center 0 !important;"></div><div class="page-skeleton-aside" style="position: absolute; top: 0; left: 0; width: 184px; height: calc(100% - 60px); background-image: url(https://pic.rmb.bdstatic.com/f5a76ff7339be3e5f3fcc9146e46de49.png?x-bce-process=image/format,f_auto); background-size: cover;"></div><div class="page-skeleton-loading" style="position: absolute; top: 0; bottom: 0; width: 200%; animation: skeletonFlush 2s linear infinite; background-image:linear-gradient(135deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 65%);"></div></div><script>(() => { function remove() { var animationDom = document.querySelector('#page-skeleton'); if (animationDom) { animationDom.classList.add('out'); setTimeout(() => { animationDom.remove(); }, 200); } } var sizeMap = { 'normal': 'https://pic.rmb.bdstatic.com/26b73959fa11171b530edf1857989586.png?x-bce-process=image/format,f_auto', 'small': 'https://pic.rmb.bdstatic.com/673fe46035f2304a43bb748b674155e6.png?x-bce-process=image/format,f_auto', }; function addStyle(size) { var pagebg = document.querySelector('.page-skeleton-bg'); if (pagebg) { pagebg.style.backgroundImage = 'url(' + sizeMap[size] + ')'; } } window.addEventListener('removeSkeleton', remove); if (['/', '/builder/rc/home'].includes(window.location.pathname)) { var wid = window.innerWidth; if (wid < 1280) { addStyle('small'); } else { addStyle('normal'); } } else { remove(); } })();</script><style>#story-page-skeleton { position: fixed; top: 0; left: 0; width: 100vw; min-width: 1100px; height: 100vh; overflow: hidden; z-index: 9999; background-color: #f0f3f7; } #story-page-skeleton * { opacity: 1; transition: opacity 0.2s linear; } #story-page-skeleton.out * { opacity: 0; } @keyframes skeletonFlush { 0% { transform: translate3d(-100%, 0, 0); } 50% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(100%, 0, 0); } }</style><div id="story-page-skeleton"><div class="story-page-skeleton-bg" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-repeat: no-repeat !important; background-size: 100% auto !important; background-position: center 0 !important;"></div><div class="story-page-skeleton-loading" style="position: absolute; top: 0; bottom: 0; width: 200%; animation: skeletonFlush 2s linear infinite; background-image:linear-gradient(135deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 65%);"></div></div><script>(() => { function remove() { var animationDom = document.querySelector('#story-page-skeleton'); if (animationDom) { animationDom.classList.add('out'); setTimeout(() => { animationDom.remove(); }, 200); } } var sizeMap = { 'normal': 'https://pic.rmb.bdstatic.com/5ae6d2ff77a765764bb7575072923d0c.png', 'small': 'https://pic.rmb.bdstatic.com/86c4012b9ddad5b069133744eebc03e0.png', }; function addStyle(size) { var pagebg = document.querySelector('.story-page-skeleton-bg'); if (pagebg) { pagebg.style.backgroundImage = 'url(' + sizeMap[size] + ')'; } } window.addEventListener('removeSkeleton', remove); if (['/builder/rc/story', '/builder/rc/story/home'].includes(window.location.pathname)) { var wid = window.innerWidth; if (wid < 1441) { addStyle('small'); } else { addStyle('normal'); } } else { remove(); } })();</script><script>window.__BJH__INIT__AUTH__ = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9iYWlqaWFoYW8uYmFpZHUuY29tIiwiYXVkIjoiaHR0cDpcL1wvYmFpamlhaGFvLmJhaWR1LmNvbSIsImlhdCI6MTc2NTc4ODQ1NiwibmJmIjoxNzY1NzQ1MjYxLCJleHAiOjE3NjU4MzE2NjF9.2RTl2Q9fVEjtd_qj8WIu_2ifi0J3JL6Mb3MoQT27WGU';
// eslint-disable-next-line
window.user_id = '8ac7ed464615278876166cd56b3a3ec8';
localStorage.setItem('edit-token', JSON.stringify(window.__BJH__INIT__AUTH__));
window.__EDITOR__VERSION__ = '1.0.18.3';
var defaultVersion = '1.0.1';
var serViceVersion = window.__EDITOR__VERSION__ || defaultVersion;
var cookieVersion = window.getCookie('editor_version');
var version = cookieVersion || serViceVersion;
window.__EDITOR_V_LAST__ = version;
localStorage.setItem('editor_v', JSON.stringify(window.__EDITOR_V_LAST__));</script></body></html>