Mobile 375 × 812

Desktop 1440 × 900

Score: 67 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Solid SEO basics — a few optimizations could boost rankings.
Good server performance with room for optimization.
Several regulatory requirements are not yet met.
Missing metadata means poor previews on social media and search.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
1 link(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
2 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/2f53b49c-6c57-43fc-a4b2-60c5d1e386f9)<a href="https://beavercheck.com/results/2f53b49c-6c57-43fc-a4b2-60c5d1e386f9"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fbilibili.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fbilibili.comThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
10 barrier(s) likely increasing bounce by ~40%.
Page takes 18.1s to load
+12% bounceUsers abandon at ~3s — you're 15.6s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 1.9s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No viewport meta tag
+15% bounceMobile browsers render at desktop width and shrink — text unreadable, tap targets miniature
Fix: Add <meta name="viewport" content="width=device-width, initial-scale=1">
No Open Graph tags
+2% bounceLinks shared on LinkedIn / Slack / Facebook show bare URLs — referral clicks drop
Fix: Add og:title, og:description, og:image, og:url to the page head
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
Thin content
+3% bounceUnder 300 words — visitors bounce looking for substance, search engines rank competitors first
Fix: Add a substantive FAQ, product detail, or case-study section
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
24 broken link(s) on the page
+5% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
¥1,575 investment → ¥5.54/month returns + CNY 50,000,000 risk avoided
¥1,575
4h · 5 findings
¥5.54 /mo
~¥66 / year
CNY 50,000,000
if kept compliant
¥525 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
4.5 developer hours at ¥350/hr
Based on China rates (¥350/hr)
Start here for the best return on investment
¥4,166,672 / month at risk
~¥50,000,066 / year if left unfixed
¥50,000,000
+1 more
¥5.54 /mo
9695.4 MB/mo × 0.571 CNY/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
5.01 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
18.06 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.85 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
6.74 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
18.06 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| s1.hdslb.com/bfs/seed/jinkela/short/minntaki-wasm-sdk/bili-sc-sdk.umd.js | 600.0 s | 151.7 KiB |
| s1.hdslb.com/bfs/seed/log/report/log-reporter.js | 600.0 s | 41.8 KiB |
| s1.hdslb.com/bfs/seed/log/report/14.d6cf9.function.chunk.js | 600.0 s | 33.6 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/b-mirror/biliMirror.umd.mini.js | 600.0 s | 32.7 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/reporter-pb/index.js | 600.0 s | 30.6 KiB |
| s1.hdslb.com/bfs/seed/jinkela/kv-sdk/index.js | 600.0 s | 5.9 KiB |
| s1.hdslb.com/bfs/seed/log/report/512.4a4c4.function.chunk.js | 600.0 s | 2.5 KiB |
| s1.hdslb.com/bfs/seed/log/report/86.e192d.function.chunk.js | 600.0 s | 2.1 KiB |
| s1.hdslb.com/bfs/seed/log/report/950.3cf17.function.chunk.js | 600.0 s | 1.9 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| bilibili.com/ | 1.5 s |
| www.bilibili.com/ | 1.0 s |
| m.bilibili.com/ | 0.0 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /bfs/static/jinkela/mstation-h5-new/2.mstation.986ddeb408... | 313.2 KiB | 119.4 KiB |
| /bfs/static/jinkela/mstation-h5-new/6.mstation.986ddeb408... | 80.6 KiB | 31.5 KiB |
| /bfs/static/jinkela/mstation-h5-new/14.mstation.986ddeb40... | 67.3 KiB | 27.5 KiB |
| /bfs/static/jinkela/mstation-h5-new/0.mstation.986ddeb408... | 68.1 KiB | 21.7 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /bfs/static/jinkela/mstation-h5-new/css/mstation.2.986dde... | 39.6 KiB | 35.6 KiB |
| /bfs/static/jinkela/mstation-h5-new/css/mstation.6.986dde... | 19.7 KiB | 18.4 KiB |
| /bfs/static/jinkela/mstation-h5-new/css/mstation.14.986dd... | 17.1 KiB | 15.4 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /bfs/static/jinkela/mstation-h5-new/2.mstation.986ddeb408... | 310.8 KiB | 138.3 KiB |
| /bfs/static/jinkela/mstation-h5-new/14.mstation.986ddeb40... | 67.0 KiB | 51.9 KiB |
| /bfs/static/jinkela/mstation-h5-new/6.mstation.986ddeb408... | 79.8 KiB | 36.3 KiB |
| /bfs/static/jinkela/mstation-h5-new/0.mstation.986ddeb408... | 63.0 KiB | 29.4 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/b-mirror/biliMirror.umd.mini.js | 31.3 KiB | 21.4 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| /bfs/static/jinkela/mstation-h5-new/0.mstation.986ddeb408... | 1.3 s | 1.0 s | 42 ms |
| s1.hdslb.com/bfs/seed/jinkela/short/minntaki-wasm-sdk/bili-sc-sdk.umd.js | 751 ms | 555 ms | 45 ms |
| Unattributable | 715 ms | 198 ms | 0.0 ms |
| m.bilibili.com/ | 657 ms | 40 ms | 30 ms |
| s1.hdslb.com/bfs/seed/log/report/log-reporter.js | 535 ms | 274 ms | 16 ms |
| /bfs/static/jinkela/mstation-h5-new/2.mstation.986ddeb408... | 247 ms | 23 ms | 200 ms |
| s1.hdslb.com/bfs/seed/jinkela/short/reporter-pb/index.js | 142 ms | 120 ms | 18 ms |
| s1.hdslb.com/bfs/seed/log/report/14.d6cf9.function.chunk.js | 108 ms | 88 ms | 18 ms |
| /bfs/static/jinkela/mstation-h5-new/6.mstation.986ddeb408... | 94 ms | 2.6 ms | 87 ms |
| s1.hdslb.com/bfs/seed/jinkela/short/b-mirror/biliMirror.umd.mini.js | 78 ms | 53 ms | 13 ms |
| /bfs/static/jinkela/mstation-h5-new/14.mstation.986ddeb40... | 67 ms | 2.1 ms | 64 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 3.1 s |
| Style & Layout | 758 ms |
| Other | 701 ms |
| Script Parsing & Compilation | 540 ms |
| Parse HTML & CSS | 202 ms |
| Garbage Collection | 63 ms |
| Rendering | 44 ms |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Download App div.m-navbar > div.right > m-open-app.m-open-app > div.open-app-img |
Open in App m-open-app.m-open-app > button.v5-button > div.v5-button__content__wrap > span |
These are opportunities to improve the legibility of your content.
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.suspension-box > div.m-navbar > div.right > a.search div.suspension-box > div.m-navbar > div.right > a.search |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
首页
番剧
国创
纪录片
电影
电视剧
影视
娱乐
音乐
舞蹈
动画
绘画
鬼畜
游戏
资讯
知识
人工智能
科技数码
汽车
时尚美妆
家装房产
户外潮流
健… div > div.v-switcher__header > div.v-switcher__header__tabs__wrap > ul.v-switcher__header__tabs__list |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more about the viewport meta tag.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
head > meta head > meta |
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| StorageType.persistent is deprecated. Please use standardized navigator.storage instead. | /bfs/static/jinkela/mstation-h5-new/2.mstation.986ddeb408... line 21980, col 44 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.33 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.65 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
141 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.51 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
3.73 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| s1.hdslb.com/bfs/seed/jinkela/short/minntaki-wasm-sdk/bili-sc-sdk.umd.js | 600.0 s | 151.7 KiB |
| s1.hdslb.com/bfs/seed/log/report/log-reporter.js | 600.0 s | 41.8 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/b-mirror/biliMirror.umd.mini.js | 600.0 s | 32.7 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/reporter-pb/index.js | 600.0 s | 30.6 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/watchlater-pip/watchlater-pip.umd.js | 600.0 s | 22.8 KiB |
| s1.hdslb.com/bfs/cm/cm-sdk/static/js/bili-collect.js | 600.0 s | 13.2 KiB |
| s1.hdslb.com/bfs/seed/jinkela/short/bmg/register/fallback.js | 600.0 s | 6.3 KiB |
| s1.hdslb.com/bfs/seed/jinkela/kv-sdk/index.js | 600.0 s | 5.9 KiB |
| s1.hdslb.com/bfs/seed/log/report/86.e192d.function.chunk.js | 600.0 s | 2.1 KiB |
| s1.hdslb.com/bfs/seed/log/report/950.3cf17.function.chunk.js | 600.0 s | 1.9 KiB |
| /gentleman/polyfill.js?features=es2015%2Ces2016%2Ces2017%... | 600.0 s | 284 B |
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/e52d6aecd75db0e310c73185304fd927834ac716.png@1c.webp | 133.7 KiB | 106.6 KiB |
全员危局,正义倒计时! div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/f48a2e0699ed0e1ad416643b00b1c22ff6110c84.png@... | 66.4 KiB | 42.9 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/6970b12a96d85dd28a0aeb803eb3428dfec771bb.png@1c.webp | 54.8 KiB | 42.2 KiB |
你被外星人抓了,想回地球需3个小时内,吃完其中一盘茶点。 div.bili-video-card__image > div.bili-video-card__image--wrap > picture.v-img > img | /bfs/archive/18057756bf3d62b6645a90b4f2c0794e9ccf76df.jpg... | 37.7 KiB | 31.2 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/85e5279a1d53d4cb46033e1619d78628415f98c4.png@1c.webp | 34.0 KiB | 27.1 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/62aee277e1d935580f66d296f349bd358cd956a0.png@1c.webp | 32.3 KiB | 25.7 KiB |
禁闭求生2春季更新测评 div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/6473d8810dd2dcfef3c13944d6877d8b0fb750cc.png@... | 38.7 KiB | 25.0 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/446466499bd9615bc950ec4d8ec63647defc05b6.png@1c.webp | 32.7 KiB | 24.9 KiB |
墨西哥街头柴火烤肉! div.bili-video-card__image > div.bili-video-card__image--wrap > picture.v-img > img | /bfs/archive/9ed1bb53defbf1bccebb6c158d1a84425bab433e.jpg... | 30.1 KiB | 24.8 KiB |
专属全家人的春季健康守护方案来啦!>> div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/ea1cc3c6fdd72e1dd4bffe839d27f7abc840e1c0.jpg@... | 37.7 KiB | 24.4 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/0095303b06f64e05ba354655c0a6c83fb618f8e7.png@1c.webp | 29.1 KiB | 23.2 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/34c3621fc6fed4e16eab30d0448b35554711bfeb.png@1c.webp | 28.8 KiB | 23.0 KiB |
我和书的故事,要说的有很多 div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/7451679d1f0131b5fcc47a5093c18d961ee7b432.jpg@... | 34.3 KiB | 22.2 KiB |
生日回顾上线!张真源 “源”来是你 div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/4f0e4589091387ddfebcb929ea34044a10cacee6.png@... | 30.8 KiB | 19.9 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/0415c092aa2c61c1ca25ba69b8c77130f1ab37c3.png@1c.webp | 24.2 KiB | 19.3 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/0546ed600f8dcfcf4c2eb3212ed1e12178abdb86.png@1c.webp | 24.1 KiB | 19.2 KiB |
div.bili-header > div.bili-header__banner > picture#bili-header-banner-img > img div.bili-header > div.bili-header__banner > picture#bili-header-banner-img > img | /bfs/archive/a8dcb9d05c22e7e5cfb1bbd0d97092f4edd357ef.png... | 35.8 KiB | 17.5 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/f14b431627327dda93f34b13392a3a773be5e788.png@1c.webp | 24.3 KiB | 16.9 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/b3ee9e71fbcc0520a1ac32e2b3a2d0dc6086bb9b.png@1c.webp | 20.5 KiB | 16.3 KiB |
台湾票房年冠!当电车难题成为现实 div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/003faabaef31c07f0761b691c3ec94c0eab45b1b.png@... | 24.4 KiB | 15.8 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/8f51a0828e322ca0576f449ceb45cca453735506.png@1c.webp | 19.1 KiB | 15.3 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/d81527e08e5031badd870819fa801f6fd41fc021.png@1c.webp | 18.7 KiB | 14.9 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/83e19c7274daec8f0e7d97cd6ad888e3e43b8083.png@1c.webp | 18.2 KiB | 14.5 KiB |
九派大比开启,咱们一起组个队? div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/543efb1fe0d2befca540343e540d175faf43e1cb.png@... | 20.8 KiB | 13.5 KiB |
地铁系列新作首曝PV独家首发! >> div.carousel-area-img > a.carousel-item > picture.v-img > img | /bfs/banner/cbc33c2b4414ae3307ca60ad99898c5ea1c19b6f.png@... | 19.6 KiB | 12.7 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/3d4a9667931a9a20011a384b7d699c3b286b82ab.png@1c.webp | 16.7 KiB | 12.5 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/752ba46c080dca88401aac470f134ac0e6444705.png@1c.webp | 14.4 KiB | 12.1 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/3505e4538c81fce91fa5e6dacd4703d8277df021.png@1c.webp | 14.2 KiB | 11.3 KiB |
div.watchlater-pip-button-inner > div.btn-icon > picture.v-img > img div.watchlater-pip-button-inner > div.btn-icon > picture.v-img > img | /bfs/static/jinkela/long/images/wlpip-playing-active.gif@... | 11.5 KiB | 11.1 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/82a15b3fda5ce240bac44b8d0b793b13c3bafc4e.png@1c.webp | 13.2 KiB | 10.5 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/9316d140598d5dc7e86d72e4a99ed903953d2e76.png@1c.webp | 11.9 KiB | 9.5 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/0b9b00f62fd5760dc64fa16c564591957c3ace05.png@1c.webp | 11.8 KiB | 9.4 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/f8720df769d23c497096f57b73528265fd6b554a.png@1c.webp | 12.0 KiB | 9.2 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/83615a69b1ecab29163a54912260fd624a886906.png@1c.webp | 12.2 KiB | 9.2 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/e3607ba671317e2b1e4990a9225cbf9981a7a414.png@1c.webp | 10.9 KiB | 8.7 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/2a4e5f40421d467e841b24eed228910bf965d4a1.png@1c.webp | 10.8 KiB | 8.6 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/4e2110157727360d88357840903ed05b6b94c453.png@1c.webp | 10.4 KiB | 8.3 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/eca4ed09885bef57072526002c8900467a07dc3f.png@1c.webp | 9.4 KiB | 7.5 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/fa622f4b21c7fb66f84ebf87d36faaaa993363f0.png@1c.webp | 8.8 KiB | 7.0 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/3c711c23ae57db96468a23e2beca49ce66f12c73.png@1c.webp | 8.2 KiB | 6.6 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/9afdb972babc0fed529e241176bad847a8094774.png@1c.webp | 7.3 KiB | 5.9 KiB |
a.font-medium > div.living > picture.v-img > img a.font-medium > div.living > picture.v-img > img | i2.hdslb.com/bfs/static/jinkela/long/images/live.gif@24w_24h.avif | 5.4 KiB | 5.3 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/1fb1501cd66d326f296e78a4561f7cc89c48d719.png@1c.webp | 6.3 KiB | 5.0 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/0cfe34374720653a8f67d68af761d239eca15da7.png@1c.webp | 6.2 KiB | 5.0 KiB |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img | i2.hdslb.com/bfs/vc/48bee957f95b7bc5f0e1b7fc14b25a4cca26901a.png@1c.webp | 5.5 KiB | 4.4 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| s1.hdslb.com/bfs/seed/log/report/log-reporter.js | 41.8 KiB | |
| s1.hdslb.com/bfs/seed/jinkela/short/b-mirror/biliMirror.umd.mini.js | 32.7 KiB | |
| s1.hdslb.com/bfs/static/shanks/laputa-home/assets/index-4e78abb0.css | 57.5 KiB | 288 ms |
| s1.hdslb.com/bfs/seed/jinkela/short/bmg/register/fallback.js | 6.3 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| bilibili.com/ | 861 ms |
| www.bilibili.com/ | 0.0 ms |
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| www.bilibili.com/ | 649 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| s1.hdslb.com/bfs/static/shanks/laputa-home/assets/index-4e78abb0.css | 56.6 KiB | 46.6 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| s1.hdslb.com/bfs/static/shanks/laputa-home/assets/index-a1cbe777.js | 355.3 KiB | 127.1 KiB |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.2 s |
| Other | 778 ms |
| Style & Layout | 230 ms |
| Script Parsing & Compilation | 40 ms |
| Parse HTML & CSS | 34 ms |
| Rendering | 33 ms |
| Garbage Collection | 30 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.carousel-container > div.vui_carousel > div.carousel-arrows > button div.carousel-container > div.vui_carousel > div.carousel-arrows > button |
div.carousel-container > div.vui_carousel > div.carousel-arrows > button div.carousel-container > div.vui_carousel > div.carousel-arrows > button |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
登录 li.v-popover-wrap > div.right-entry__outside > div.header-login-entry > span |
立即登录 div.v-popover > div.v-popover-content > div.login-panel-popover > div.login-btn |
点我注册 div.v-popover-content > div.login-panel-popover > div.register-tip > span.register-exper |
投稿 li.v-popover-wrap > div > div.header-upload-entry > span.header-upload-entry__text |
小草律师呀 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-10 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
LMasmr div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-12 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
GenJi是真想教会你 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-12 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
诺言其实是小猫 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-11 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
KARAKU_ div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-10 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
墨西哥老林 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-10 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
SUtopia_苏新皓 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--author |
· 04-12 div.bili-video-card__info--right > div.bili-video-card__info--bottom > a.bili-video-card__info--owner > span.bili-video-card__info--date |
直播中 p.title > a.font-medium > div.living > span |
These are opportunities to improve the legibility of your content.
Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
登录
登录后你可以:
免费看高清视频
多端同步播放记录
发表弹幕/评论
热门番剧影视看不停
立即登录
首次使用? 点我注册 div.bili-header__bar > ul.right-entry > li.right-entry-item > li.v-popover-wrap |
大会员 ul.right-entry > li.right-entry-item > div.vip-wrap > li.v-popover-wrap |
投稿 div.bili-header__bar > ul.right-entry > li.right-entry-item > li.v-popover-wrap |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| StorageType.persistent is deprecated. Please use standardized navigator.storage instead. | s1.hdslb.com/bfs/seed/log/report/log-reporter.js line 1, col 20120 |
| Unload event listeners are deprecated and will be removed. | s1.hdslb.com/bfs/static/shanks/laputa-home/assets/index-a1cbe777.js line 4, col 22012 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
s1.hdslb.com/bfs/static/shanks/laputa-home/assets/index-a1cbe777.js line 16, col 22135 | Hydration completed but contains mismatches. |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
div.bili-header__banner > div.animated-banner > div.layer > img div.bili-header__banner > div.animated-banner > div.layer > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback