Mobile 375 × 812

Desktop 1440 × 900

Score: 69 / 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.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
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.
13 image-in-link without alt 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/8424f20e-42ce-4bdf-b2e5-b5e73f1d1189)<a href="https://beavercheck.com/results/8424f20e-42ce-4bdf-b2e5-b5e73f1d1189"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fmikecrm.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fmikecrm.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.
6 barrier(s) likely increasing bounce by ~23%.
Page takes 14.6s to load
+12% bounceUsers abandon at ~3s — you're 12.1s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
High main-thread blocking time
+2% bouncePage is non-interactive for 360ms after first paint
Fix: Defer third-party scripts and split large bundles
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
Viewport disables user zoom
+2% bounceVisitors with low vision can't read the page — and some jurisdictions treat this as a legal risk
Fix: Remove user-scalable=no; drop maximum-scale if it's below 2
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
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
¥1,575 investment → ¥1,265/month returns + CNY 50,000,000 risk avoided
¥1,575
4h · 5 findings
¥1,265 /mo
~¥15,175 / 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,060 / year if left unfixed
¥50,000,000
+1 more
¥5.01 /mo
8773.7 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.55 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
14.58 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
360 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.001
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
8.56 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.
15.30 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.
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.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
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.
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 |
|---|---|---|
| cdnq4.de.mikecrm.com/css/index_new.css?v=2406122 | 64.1 KiB | 450 ms |
| cdnq4.de.mikecrm.com/css/popwin.css?v=2406122 | 161.7 KiB | 750 ms |
| cdnq4.de.mikecrm.com/js/commons.js?v=231008 | 126.1 KiB | 600 ms |
| cdnq4.de.mikecrm.com/css/mgGlobal.css?v=2406122 | 20.0 KiB | 947 ms |
| cdnq4.de.mikecrm.com/css/cpDropDown.css?v=2406122 | 7.1 KiB |
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.idx_mPcContent > div.idx_mpcInfo > div.idx_mpcTab > i.idx_pctLogo div.idx_mPcContent > div.idx_mpcInfo > div.idx_mpcTab > i.idx_pctLogo | cdnq4.de.mikecrm.com/images/mini/version-sprite.png?ver=171818423 | 247.7 KiB | 152.9 KiB |
LOGO div.idx_packageService > div.idx_content > div.idx_psInfo > img.idx_psLogo | cdnq4.de.mikecrm.com/images/index/new/logo/packageService@2x.png | 25.4 KiB | 22.1 KiB |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map | cdnq4.de.mikecrm.com/images/index/new/m_global_bgMap@3x.jpg | 34.7 KiB | 20.3 KiB |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/twpc@2x.png | 7.4 KiB | 6.8 KiB |
div.mg-scroll-field > div.idx_screen > div.idx_globalHeader > ::before div.mg-scroll-field > div.idx_screen > div.idx_globalHeader > ::before | cdnq4.de.mikecrm.com/images/index/new/global_part_bg_texture@2x.jpg | 34.6 KiB | 6.5 KiB |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo | cdnq4.de.mikecrm.com/images/logo/footer@2x.png | 8.2 KiB | 5.1 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 |
|---|---|
| mikecrm.com/ | 1.3 s |
| de.mikecrm.com/ | 630 ms |
| de.mikecrm.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.
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 |
|---|---|---|
| cdnq4.de.mikecrm.com/css/popwin.css?v=2406122 | 161.5 KiB | 161.5 KiB |
| cdnq4.de.mikecrm.com/css/index_new.css?v=2406122 | 63.9 KiB | 51.6 KiB |
| cdnq4.de.mikecrm.com/css/mgGlobal.css?v=2406122 | 19.9 KiB | 19.7 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 |
|---|---|---|
| cdnq4.de.mikecrm.com/js/home.js?v=2406122 | 450.6 KiB | 196.8 KiB |
| www.googletagmanager.com/gtag/js?id=G-94DL6ZVXP2&cx=c&_slc=1 | 165.3 KiB | 70.2 KiB |
| cdnq4.de.mikecrm.com/js/commons.js?v=231008 | 125.9 KiB | 65.0 KiB |
| cdnq4.de.mikecrm.com/js/bundle.js?v=2406122 | 31.4 KiB | 21.3 KiB |
| cdnq4.de.mikecrm.com/js/common-de.js?v=2406122 | 107.8 KiB | 21.0 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 |
|---|---|
| Style & Layout | 1.1 s |
| Script Evaluation | 793 ms |
| Other | 524 ms |
| Rendering | 348 ms |
| Script Parsing & Compilation | 270 ms |
| Parse HTML & CSS | 86 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 |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
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.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
LOGO div.idx_packageService > div.idx_content > div.idx_psInfo > img.idx_psLogo | cdnq4.de.mikecrm.com/images/index/new/logo/packageService@2x.png |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo | cdnq4.de.mikecrm.com/images/logo/footer@2x.png |
logo header.idx_header > nav.idx_content > a.idx_hLogo > img.idx_hLogoImg | cdnq4.de.mikecrm.com/images/index/new/headerLogo@2x.png |
div.idx_headerFullMenu > div.idx_headerFullMenu_inner > a.idx_hOpeItem > img.idx_hoiLogo div.idx_headerFullMenu > div.idx_headerFullMenu_inner > a.idx_hOpeItem > img.idx_hoiLogo | cdnq4.de.mikecrm.com/images/index/new/mikeX/logo@2x.png |
MikeCare div.idx_mikeCare > div.idx_content > div.idx_securityInfo > img.idx_careLogo | cdnq4.de.mikecrm.com/images/index/new/logo/mikecare@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/cert_m-5@3x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/iso_darkBg@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/aliyun_darkBg_en@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/djcp_darkBg@2x.png |
div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo | cdnq4.de.mikecrm.com/images/index/new/logo/octopus.svg |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/twpc@2x.png |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo | cdnq4.de.mikecrm.com/images/logo/footer_mikeCare@2x.png |
form div.idx_scenarioBlock > div.idx_scenarioInfo > div.idx_siHeader > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/form@2x.png?v=2 |
contact div.idx_scenarioBlock > div.idx_scenarioInfo > div.idx_siHeader > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/contact@2x.png?v=2 |
member div.idx_scenarioBlock > div.idx_scenarioInfo > div.idx_siHeader > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/mbrm@2x.png?v=2 |
merchant div.idx_scenarioBlock > div.idx_scenarioInfo > div.idx_siHeader > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/mms@2x.png?v=2 |
marketing div.idx_scenarioBlock > div.idx_scenarioInfo > div.idx_siHeader > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/marketing@2x.png?v=2 |
div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg | cdnq4.de.mikecrm.com/images/index/new/logo/iTrust_m@3x.png |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo | cdnq4.de.mikecrm.com/images/logo/footer_mikeX@2x.png |
djcp div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
iso div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
twpc div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
aliyun div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
iTrust div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
iTrust div.idx_certList > div.idx_certItem > div.idx_certInfo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
spy div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
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.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
logo div.idx_main > div.idx_content_wrapper > header.idx_header > nav.idx_content |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg |
div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR |
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.
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#viewport head > meta#viewport |
These items highlight common accessibility best practices.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| de.mikecrm.com/ | Allowed |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Chinesisch (vereinfacht)简体中文 div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
Chinesisch (traditionell)繁體中文 div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
EnglischEnglish div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
FranzösischFrançais div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
Japanisch日本語 div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
Koreanisch한국어 div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
header.idx_header > nav.idx_content > div.idx_hOperate > a.idx_hHamburger header.idx_header > nav.idx_content > div.idx_hOperate > a.idx_hHamburger |
Chinesisch (vereinfacht)简体中文 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Chinesisch (traditionell)繁體中文 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
EnglischEnglish div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
FranzösischFrançais div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Japanisch日本語 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Koreanisch한국어 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
College & School div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Training Institution div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Human Resources div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Healthcare div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
More div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Conference & Exhibition div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Event Registration div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Survey div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
HR & Admin div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Online Reservation div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Online Ticketing div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
To appear in search results, crawlers need access to your app.
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.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon div.idx_mpcInfo > div.idx_mpcDetail > div.idx_mpcdFeatures > img.imx_featureIcon |
div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg div.if_certificates > div.if_certItem > div.if_ciInfo > img.if_ciOrg |
div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR |
Format your HTML in a way that enables crawlers to better understand your app’s content.
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.16 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
5.00 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
10 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.
3.63 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.
5.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.
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.
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.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
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.ifs_dataSummary > div.ifs_dataExample > div.ifs_clientList > div.ifs_clientLogoList_shadow div.ifs_dataSummary > div.ifs_dataExample > div.ifs_clientList > div.ifs_clientLogoList_shadow | cdnq4.de.mikecrm.com/images/index/new/partenerLogo_front_en@2x.png | 710.7 KiB | 380.0 KiB |
div.idx_screen > div.idx_content > div.ifs_introContent > div.ifs_introImg div.idx_screen > div.idx_content > div.ifs_introContent > div.ifs_introImg | cdnq4.de.mikecrm.com/images/index/new/heroImg_1@2x.png?v=2 | 389.4 KiB | 240.5 KiB |
form div.idx_prIntroduceWrapper > div.idx_prIntroduce > div.idx_priImg > img.idx_priImgContent | cdnq4.de.mikecrm.com/images/index/new/product/product-form_en.png | 197.2 KiB | 157.4 KiB |
div.idx_pcGuide > div.idx_pcTabs > div.idx_pcTab > i.idx_pctLogo div.idx_pcGuide > div.idx_pcTabs > div.idx_pcTab > i.idx_pctLogo | cdnq4.de.mikecrm.com/images/mini/version-sprite.png?ver=171818423 | 247.7 KiB | 152.9 KiB |
div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_1 div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_1 | cdnq4.de.mikecrm.com/images/index/new/frontBorder_top_left.png | 108.3 KiB | 65.0 KiB |
div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_4 div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_4 | cdnq4.de.mikecrm.com/images/index/new/frontBorder_bottom_right.png | 61.8 KiB | 35.6 KiB |
div.idx_screen > div.idx_prContent > div.idx_prMatrixBg > ::after div.idx_screen > div.idx_prContent > div.idx_prMatrixBg > ::after | cdnq4.de.mikecrm.com/images/index/new/product/matrix_bg@2x.png | 140.3 KiB | 18.9 KiB |
div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_2 div.idx_main > div.idx_openScreen > div.idx_ofs_content > div.idx_osf_deco_2 | cdnq4.de.mikecrm.com/images/index/new/frontBorder_top_right.png | 48.4 KiB | 14.0 KiB |
div.idx_content > div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView div.idx_content > div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView | cdnq4.de.mikecrm.com/images/index/new/mikecare/texture@2x.png | 11.8 KiB | 10.0 KiB |
div.idx_pciFeatures > div.idx_pcif_line > div.idx_pcif_item > div.mg-hex-svg div.idx_pciFeatures > div.idx_pcif_line > div.idx_pcif_item > div.mg-hex-svg | cdnq4.de.mikecrm.com/images/index/new/pricing/hive.1.2.png?v=2 | 19.9 KiB | 4.9 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 |
|---|---|---|
| cdnq4.de.mikecrm.com/css/index_new.css?v=2406122 | 64.1 KiB | 82 ms |
| cdnq4.de.mikecrm.com/css/popwin.css?v=2406122 | 161.7 KiB | 123 ms |
| cdnq4.de.mikecrm.com/js/commons.js?v=231008 | 126.1 KiB | 123 ms |
| cdnq4.de.mikecrm.com/css/mgGlobal.css?v=2406122 | 20.0 KiB | 267 ms |
| cdnq4.de.mikecrm.com/css/cpDropDown.css?v=2406122 | 7.1 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 |
|---|---|
| mikecrm.com/ | 786 ms |
| de.mikecrm.com/ | 190 ms |
| de.mikecrm.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.
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 |
|---|---|---|
| cdnq4.de.mikecrm.com/css/popwin.css?v=2406122 | 161.5 KiB | 161.5 KiB |
| cdnq4.de.mikecrm.com/css/index_new.css?v=2406122 | 63.9 KiB | 44.7 KiB |
| cdnq4.de.mikecrm.com/css/mgGlobal.css?v=2406122 | 19.9 KiB | 19.7 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 |
|---|---|---|
| cdnq4.de.mikecrm.com/js/home.js?v=2406122 | 450.6 KiB | 192.6 KiB |
| www.googletagmanager.com/gtag/js?id=G-94DL6ZVXP2&cx=c&_slc=1 | 165.8 KiB | 70.4 KiB |
| cdnq4.de.mikecrm.com/js/commons.js?v=231008 | 125.9 KiB | 62.9 KiB |
| cdnq4.de.mikecrm.com/js/common-de.js?v=2406122 | 107.8 KiB | 21.0 KiB |
| cdnq4.de.mikecrm.com/js/bundle.js?v=2406122 | 31.4 KiB | 21.0 KiB |
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 |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not actionable |
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.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
form div.idx_prIntroduceWrapper > div.idx_prIntroduce > div.idx_priImg > img.idx_priImgContent | cdnq4.de.mikecrm.com/images/index/new/product/product-form_en.png |
LOGO div.idx_packageService > div.idx_content > div.idx_psInfo > img.idx_psLogo | cdnq4.de.mikecrm.com/images/index/new/logo/packageService@2x.png |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo | cdnq4.de.mikecrm.com/images/logo/footer@2x.png |
logo header.idx_header > nav.idx_content > a.idx_hLogo > img.idx_hLogoImg | cdnq4.de.mikecrm.com/images/index/new/headerLogo@2x.png |
div.idx_headerFullMenu > div.idx_headerFullMenu_inner > a.idx_hOpeItem > img.idx_hoiLogo div.idx_headerFullMenu > div.idx_headerFullMenu_inner > a.idx_hOpeItem > img.idx_hoiLogo | cdnq4.de.mikecrm.com/images/index/new/mikeX/logo@2x.png |
MikeCare div.idx_mikeCare > div.idx_content > div.idx_securityInfo > img.idx_careLogo | cdnq4.de.mikecrm.com/images/index/new/logo/mikecare@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/iTrust@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/iso_darkBg@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/aliyun_darkBg_en@2x.png |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/djcp_darkBg@2x.png |
div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo | cdnq4.de.mikecrm.com/images/index/new/logo/octopus.svg |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo | cdnq4.de.mikecrm.com/images/index/new/logo/twpc@2x.png |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo | cdnq4.de.mikecrm.com/images/logo/footer_mikeCare@2x.png |
form div.idx_siBody > div.idx_sibInfo > div.idx_scTitle > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/form@2x.png?v=2 |
contact div.idx_siBody > div.idx_sibInfo > div.idx_scTitle > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/contact@2x.png?v=2 |
member div.idx_siBody > div.idx_sibInfo > div.idx_scTitle > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/mbrm@2x.png?v=2 |
merchant div.idx_siBody > div.idx_sibInfo > div.idx_scTitle > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/mms@2x.png?v=2 |
marketing div.idx_siBody > div.idx_sibInfo > div.idx_scTitle > img.idx_stImg | cdnq4.de.mikecrm.com/images/index/new/scenario/marketing@2x.png?v=2 |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo | cdnq4.de.mikecrm.com/images/logo/footer_mikeX@2x.png |
djcp div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
iso div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
twpc div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
aliyun div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
iTrust div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
spy div.idx_certList > div.idx_certItem > div.idx_certLogo > img.lazy-img | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
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.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Capabilities
Industries
Support
Deutsch
Log In
Sign Up div.idx_main > div.idx_content_wrapper > header.idx_header > nav.idx_content |
These are opportunities to improve the usage of ARIA in your application which 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 |
|---|
Sign Up header.idx_header > nav.idx_content > div.idx_hOperate > a.idx_hRegister |
These are opportunities to improve the legibility of your content.
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.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo |
div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView > img.idx_pwDetail div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView > img.idx_pwDetail |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map_deco div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map_deco |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR |
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.
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#viewport head > meta#viewport |
These items highlight common accessibility best practices.
All sites should be protected with HTTPS, even ones that don't handle sensitive data. This includes avoiding mixed content, where some resources are loaded over HTTP despite the initial request being served over HTTPS. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. Learn more about HTTPS.
Performance issues directly impact user engagement and conversion rates.
| Insecure URL | Request Resolution |
|---|---|
| de.mikecrm.com/ | Allowed |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language div.idx_headerMenu > div.idx_menuContent > div.idx_mLanguage > a.menu_language |
header.idx_header > nav.idx_content > div.idx_hOperate > a.idx_hHamburger header.idx_header > nav.idx_content > div.idx_hOperate > a.idx_hHamburger |
Chinesisch (vereinfacht)简体中文 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Chinesisch (traditionell)繁體中文 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
EnglischEnglish div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
FranzösischFrançais div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Japanisch日本語 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
Koreanisch한국어 div.idx_headerFullMenu_inner > div.idx_hContainer > div.idx_hDetailInfo > a.idx_hOpeContent |
College & School div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Training Institution div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Human Resources div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Healthcare div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
More div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Conference & Exhibition div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Event Registration div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Survey div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
HR & Admin div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Online Reservation div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
Online Ticketing div.if_matrixItem > div.if_imList > div.if_imItem > a.if_imItemLink |
To appear in search results, crawlers need access to your app.
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.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo div.idx_securityContent > div.idx_techContent > div.idx_techInfo > img.idx_tiLogo |
div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView > img.idx_pwDetail div.idx_securityContent > div.idx_praiseWall > div.idx_pwDetailView > img.idx_pwDetail |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon div.idx_psContent > div.idx_psFeatures > div.idx_psfItem > img.idx_psfiIcon |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map |
div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map_deco div.mg-scroll-field > div.idx_screen > div.idx_globalMap > img.idx_global_map_deco |
div.idx_footer > div.idx_content > div.if_brand > img.if_logo div.idx_footer > div.idx_content > div.if_brand > img.if_logo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo div.if_productMatrix > div.if_productItem > a.if_piBrand > img.if_piLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo div.if_safe > div.if_certificates > div.if_certItem > img.if_ciLogo |
div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR div.idx_footer > div.idx_content > div.if_copyright > img.if_sloganR |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback