Mobile 375 × 812

Desktop 1440 × 900

Score: 73 / 100
Based on 8 categories, 0 sections
Fast site — your users get a smooth experience.
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.
Missing metadata means poor previews on social media and search.
Reasonable footprint with room for optimization.
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 control(s) without accessible label
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
1 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/e8fafc8a-2ecf-4bdd-bb95-c14e13c538ee)<a href="https://beavercheck.com/results/e8fafc8a-2ecf-4bdd-bb95-c14e13c538ee"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fctrip.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fctrip.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. 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.
9 barrier(s) likely increasing bounce by ~30%.
Page takes 11.6s to load
+12% bounceUsers abandon at ~3s — you're 9.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 447ms 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
1 form field(s) without a label
+2% bounceScreen readers skip unlabeled fields; autofill can't identify them; checkout abandonment spikes
Fix: Associate every input with a visible <label for="…">; add autocomplete attributes
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, …)
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
3 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 → ¥13,637/month returns + CNY 50,000,000 risk avoided
¥1,575
4h · 5 findings
¥13,637 /mo
~¥163,641 / 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,668 / month at risk
~¥50,000,022 / year if left unfixed
¥50,000,000
+2 more
¥1.81 /mo
3171.6 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.24 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
11.63 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
447 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.003
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.39 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.
11.65 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.
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.
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
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 |
|---|---|---|
| webresource.c-ctrip.com/ResH5SearchOnline/search.css | 2.7 KiB | 756 ms |
| aw-s.tripcdn.com/NFES/html5/1741677121456/_next/serverStatic/js/vendor.js | 7.0 KiB | 1.1 s |
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.
| URL | Est Savings |
|---|---|
| /NFES/html5/1741677121456/_next/serverStatic/fonts/h5_hom... | 5.0 ms |
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.cm-slide > img | aw-s.tripcdn.com/NFES/html5/1741677121456/_next/serverStatic//img/adv_banner.png | 24.7 KiB | 15.4 KiB |
div.rank-wrapper > a.rank-item > div.block-image > img div.rank-wrapper > a.rank-item > div.block-image > img | dimg04.c-ctrip.com/images/1mc3t12000dh1t0n6E894_R_238_268.jpg | 18.1 KiB | 14.6 KiB |
div.rank-wrapper > a.rank-item > div.block-image > img div.rank-wrapper > a.rank-item > div.block-image > img | dimg04.c-ctrip.com/images/1mc2r12000ivv6pthFCAA_R_238_268.jpg | 17.3 KiB | 13.7 KiB |
| /NFES/html5/1741677121456/_next/serverStatic//img/salesli... | 13.0 KiB | 7.8 KiB | |
a.rank-wrapper > div.rank-item > div.block-image > img a.rank-wrapper > div.rank-item > div.block-image > img | /NFES/html5/1741677121456/_next/serverStatic//img/salesli... | 11.9 KiB | 7.5 KiB |
div > a.hotsale-wrapper > div.block-image > img div > a.hotsale-wrapper > div.block-image > img | images4.c-ctrip.com/target/02A4t12000ilj3s60FB7D_D_280_280_R5.jpg | 20.3 KiB | 7.2 KiB |
div > a.hotsale-wrapper > div.block-image > img div > a.hotsale-wrapper > div.block-image > img | images4.c-ctrip.com/target/02A6z12000iljaeywBB19_D_280_280_R5.jpg | 19.3 KiB | 6.5 KiB |
div#__next > div.tabbar > a#c_bbz_tabbar_mytrip > span.icon-myctrip div#__next > div.tabbar > a#c_bbz_tabbar_mytrip > span.icon-myctrip | aw-s.tripcdn.com/NFES/html5/1741677121456/_next/serverStatic/img/tabbar.png | 11.6 KiB | 4.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 |
|---|---|
| ctrip.com/ | 1.4 s |
| www.ctrip.com/ | 1.1 s |
| m.ctrip.com/html5/ | 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 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 |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-B77BES1Z8Z&cx=c&_slc=1 | 179.4 KiB | 66.5 KiB |
| static.tripcdn.com/packages/market/mktadsdk/%5E1.0.0/new/js/aSlide.umd.min.js | 40.1 KiB | 23.9 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.
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.9 s |
| Other | 737 ms |
| Style & Layout | 372 ms |
| Script Parsing & Compilation | 213 ms |
| Garbage Collection | 57 ms |
| Rendering | 46 ms |
| Parse HTML & CSS | 16 ms |
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.
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
包车游
保险
微领队
一日游
定制游
邮轮游
外币兑换
签证
境外上网
旅拍·跟拍
拿去花
礼品卡
联名卡
会员/签到
会员商城
携程小诗机
紧急支援
加盟合… div.nav-animate-height > div > div.react-swipeable-view-container > div |
酒店套餐
99元全国经济酒店通用券套餐
¥99 div.banner > div.slider > div.react-swipeable-view-container > div |
酒店套餐
199元全国优质酒店通用券套餐
¥199 div.banner > div.slider > div.react-swipeable-view-container > div |
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#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img div#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img |
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 |
|---|
body#ctripPage > div#__next > a#c_bbz_h5_qiandao body#ctripPage > div#__next > a#c_bbz_h5_qiandao |
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 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.
Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. Learn more about the geolocation permission.
Performance issues directly impact user engagement and conversion rates.
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
div.rank-wrapper > a.rank-item > div.block-image > img div.rank-wrapper > a.rank-item > div.block-image > img | dimg04.c-ctrip.com/images/1mc2r12000ivv6pthFCAA_R_238_268.jpg | 85 x 84 (1.01) | 238 x 268 (0.89) |
div.rank-wrapper > a.rank-item > div.block-image > img div.rank-wrapper > a.rank-item > div.block-image > img | dimg04.c-ctrip.com/images/1mc3t12000dh1t0n6E894_R_238_268.jpg | 85 x 84 (1.01) | 238 x 268 (0.89) |
Image natural dimensions should be proportional to the display size and the pixel ratio to maximize image clarity. Learn how to provide responsive images.
Performance issues directly impact user engagement and conversion rates.
| URL | Displayed size | Actual size | Expected size | |
|---|---|---|---|---|
div#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img div#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img | dimg04.c-ctrip.com/images/0zg7312000jgweccc529C.jpg | 1440 x 360 | 1440 x 360 | 2160 x 540 |
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 |
|---|
首页 body#ctripPage > div#__next > div.tabbar > a#c_bbz_tabbar_home |
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#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img div#img_wrap > div.adsdk_banner_flag > div#adsdk_550320 > img |
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.56 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
3.91 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
34 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.
4.29 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.
4.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.
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.
| URL | Est Savings |
|---|---|
| pic.c-ctrip.com/picaresonline/nfes/pc-home/icon/pc_home.181ecfa4.woff2 | 50 ms |
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.
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
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.
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.
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 |
|---|---|
| ctrip.com/ | 825 ms |
| www.ctrip.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.ctrip.com/ | 724 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 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 |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-9BZF483VNQ&cx=c>m=4e64k0h2 | 158.2 KiB | 66.0 KiB |
| www.googletagmanager.com/gtag/js?id=G-B77BES1Z8Z&cx=c>m=4e64k0h2 | 177.4 KiB | 63.8 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-NS9686L5 | 116.9 KiB | 63.2 KiB |
| /packages/market/mktadsdk/^1.0.0/common/js/adsdkswiper.mi... | 34.3 KiB | 30.7 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 |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| .cflt-poi { position: relative; } … | 8.8 KiB | 4.3 KiB |
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 | |
|---|---|
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200s1900000169opw2822_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0201z120008xa8qv4070D_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200e14000000x84q0806B_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0204t120008suo8zvDB23_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/02027120008fy9ok332A3_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200c0j000000aweqfC96E_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0222u1200084amtc397B3_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200415000000y1q4r6330_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0202d120009gukbvt798A_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0200m120008r4ytttF067_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0206u1200096k8e6q60D8_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200o15000000xb5qu785D_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200s1900000169opw2822_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0201z120008xa8qv4070D_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200e14000000x84q0806B_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/0204t120008suo8zvDB23_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/02027120008fy9ok332A3_D_200_200.jpg |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW | dimg04.c-ctrip.com/images/200c0j000000aweqfC96E_D_200_200.jpg |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF | pages.ctrip.com/cct-map/xtaro-map/ctrip_index/tripplanner_bg.png |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF | pages.ctrip.com/cct-map/xtaro-map/ctrip_index/tripmap_bg.png |
dl.fl_footer_item_vp3yx > dd > div > img dl.fl_footer_item_vp3yx > dd > div > img | /modules/nfes/pc-home/er_ctrip_app.d496654a3dbc0ff068f2b9... |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond5_20180824.png |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond4_20180824.png |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond4_20180824.png |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond3_20180824.png |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond3_20180824.png |
a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 a.pas_link_kOrNP > div.pas_info_GCPkI > h3.pas_name_LcD8k > img.pas_level_wogL7 | /ResH5HotelOnline/R1/hotel_detail_icon_diamond3_20180824.png |
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 |
|---|
推荐 div.pas_container_0P0Vy > div.pas_header_WsFwT > div.pas_title_uUrEZ > span.pas_recommend_xixTf |
上海 div.pas_container_0P0Vy > div.pas_header_WsFwT > ul.pas_ul_EH8fT > button.pas_btn_XmTzE |
4.9 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_score_GG6Bd |
超棒 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_rating_BGtYb |
¥1,215 div.pas_price_N0Qms > div.pas_price_info_yK3nj > div.pas_price_N0Qms > span.pas_num_pj3t4 |
4.7 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_score_GG6Bd |
超棒 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_rating_BGtYb |
¥625 div.pas_price_N0Qms > div.pas_price_info_yK3nj > div.pas_price_N0Qms > span.pas_num_pj3t4 |
4.9 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_score_GG6Bd |
超棒 div.pas_info_GCPkI > div.pas_review_kVie- > span > span.pas_rating_BGtYb |
¥1,185 div.pas_price_N0Qms > div.pas_price_info_yK3nj > div.pas_price_N0Qms > span.pas_num_pj3t4 |
热推 div.pas_container_0P0Vy > div.pas_header_WsFwT > span.pas_title_uUrEZ > span.pas_recommend_xixTf |
¥458起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
458 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
4.6分 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_m4_idYdI > span.pas_small_cbWyx |
¥1063起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
1063 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
5.0分 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_m4_idYdI > span.pas_small_cbWyx |
¥1254起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
1254 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
4.9分 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_m4_idYdI > span.pas_small_cbWyx |
¥1680起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
1680 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
5.0分 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_m4_idYdI > span.pas_small_cbWyx |
¥758起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
758 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
4.7分 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_m4_idYdI > span.pas_small_cbWyx |
¥584起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
584 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
携程精选 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex-center_zkrYK > span.pas_select_HvtoQ |
¥600起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
600 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
携程精选 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex-center_zkrYK > span.pas_select_HvtoQ |
¥615起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
615 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
携程精选 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex-center_zkrYK > span.pas_select_HvtoQ |
¥627起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
627 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
携程精选 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex-center_zkrYK > span.pas_select_HvtoQ |
¥640起 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms |
640 div.pas_content_if-sw > div.pas_flex_MkmbL > span.pas_price_N0Qms > span.pas_num_pj3t4 |
携程精选 a.pas_li_KTbI6 > div.pas_content_if-sw > div.pas_flex-center_zkrYK > span.pas_select_HvtoQ |
Copyright©1999-2026, ctrip.com. All rights reserved. | ICP证:沪B2-20050130 | 沪ICP… div.fl_footer_wrap_ow234 > div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p |
Copyright© div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p > a#copyright |
ctrip.com div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p > a |
ICP证:沪B2-20050130 | div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p > a |
沪ICP备08023580号-3 | div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p > a |
网信算备310105117481904230015号 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p > a |
沪公网备31010502002731号丨互联网药品信息服务资格证丨(沪)网械平台备字[2022]第00001号 | 沪网食备1050001号 | 旅游度假资质… div.fl_footer_wrap_ow234 > div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P |
沪公网备31010502002731号 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > a |
互联网药品信息服务资格证 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > a |
(沪)网械平台备字[2022]第00001号 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > a |
沪网食备1050001号 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > span |
旅游度假资质 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > a |
平台信息 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_gns_wrapper_wMJ0P > a |
违法和不良信息举报电话021-22500846丨全国旅游投诉热线12345丨 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_supervision-call_gsdM8 > span |
上海市旅游网站落实诚信建设主体责任承诺书 div.fl_layout_wrap_g-sIE > div.fl_footer_copyright_wrapper_xaEbt > p.fl_supervision-call_gsdM8 > a |
These are opportunities to improve the legibility of your content.
When definition lists are not properly marked up, screen readers may produce confusing or inaccurate output. Learn how to structure definition lists correctly.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
境内:
95010
或 400-830-6666
中国香港:+852-3008-3295
中国澳门:+86-21 3406-4888
中国台湾:+86-21 … div.fl_layout_wrap_g-sIE > div.fl_footer_link_list_OWItH > div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx |
扫码下载携程App div.fl_layout_wrap_g-sIE > div.fl_footer_link_list_OWItH > div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx |
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#platformAdvertStairs > div.pas_container_0P0Vy > div.pas_header_WsFwT > ul.pas_ul_EH8fT |
These are opportunities to improve the experience of reading tabular or list data using 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#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_953254 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_953254 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_954129 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_954129 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF |
div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- |
div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF |
div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- |
div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div#fl_pop_wrap_cntr > div.fl_pop_box > div.fl_pop_pic > img div#fl_pop_wrap_cntr > div.fl_pop_box > div.fl_pop_pic > img |
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 |
|---|
Trip div#pc_home_right_content > div#businessAdvBlock > div.bab_btlayout_wrapper_wOLXB > a |
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.
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Go to slide 1 div#marketAdvert_ad > div#slider_YZzAYjyCwcfA > div.adsdk-pagination > span.adsdk-pagination-bullet |
Go to slide 2 div#marketAdvert_ad > div#slider_YZzAYjyCwcfA > div.adsdk-pagination > span.adsdk-pagination-bullet |
Go to slide 3 div#marketAdvert_ad > div#slider_YZzAYjyCwcfA > div.adsdk-pagination > span.adsdk-pagination-bullet |
Go to slide 4 div#marketAdvert_ad > div#slider_YZzAYjyCwcfA > div.adsdk-pagination > span.adsdk-pagination-bullet |
酒店预订 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
海外酒店 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
特价机票 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
国际机票 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
旅游线路 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
会议旅游 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
礼品卡 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
团队游 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
企业商旅 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > a.psf_item_link_RF4qJ |
查看全部 div.psf_module_item_xfDGJ > div.psf_link_list_wrapper_ordZI > div.psf_list_layout_Ac-6A > button |
宾馆索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
攻略索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
机票索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
网站导航 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
旅游索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
邮轮索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
企业差旅索引 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
友情链接 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
保险代理 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
酒店加盟 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
更多加盟合作 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
关于携程 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
联系我们 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
诚聘英才 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
用户协议 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
隐私政策 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
营业执照 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
安全中心 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
携程内容中心 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
知识产权 div.fl_footer_item_layout_gZ1W6 > dl.fl_footer_item_vp3yx > dd.fl_ft_link_item_8Hler > a |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
联系客服 ul#hp_nfes_accountbar > li.tl_home_header_item_JJ5DU > div.tl_header_icon_wrapper_GsnJ- > button |
广告
城际上海虹桥机场酒店
4.9超棒6498条点评
¥1,273¥1,215 div.pas_hotel-container_D5uyO > ul.pas_hotel_8EyaF > li.pas_item_7-Jyt > a.pas_link_kOrNP |
广告
桔子酒店(上海真如环宇城店)
4.7超棒1250条点评
¥625 div.pas_hotel-container_D5uyO > ul.pas_hotel_8EyaF > li.pas_item_7-Jyt > a.pas_link_kOrNP |
广告
上海陆家嘴中心城际酒店
4.9超棒2387条点评
¥1,185 div.pas_hotel-container_D5uyO > ul.pas_hotel_8EyaF > li.pas_item_7-Jyt > a.pas_link_kOrNP |
1
浙江普陀山2日1晚跟团游
¥458起
4.6分| 33482人出游 div.pas_group_I902J > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
2
江西庐山市3日2晚拼小团
¥1063起
5.0分| 77人出游 div.pas_group_I902J > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
3
上海迪士尼(Disney)3日2晚私家团
¥1254起
4.9分| 165人出游 div.pas_group_I902J > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
4
江西庐山市3日2晚私家团
¥1680起
5.0分| 367人出游 div.pas_group_I902J > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
5
浙江普陀山2日1晚跟团游
¥758起
4.7分| 1755人出游 div.pas_group_I902J > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
1
上海
南京
¥584起
携程精选
2.8折
04-25 去 04-26 回 div.pas_flight_LCrXO > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
2
上海
惠州
¥600起
携程精选
2.1折
05-15 去 05-17 回 div.pas_flight_LCrXO > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
3
上海
郑州
¥615起
携程精选
2.1折
05-08 去 05-11 回 div.pas_flight_LCrXO > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
4
上海
大连
¥627起
携程精选
2.0折
05-09 去 05-11 回 div.pas_flight_LCrXO > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
5
上海
福州
¥640起
携程精选
2.2折
05-09 去 05-11 回 div.pas_flight_LCrXO > ul.pas_r-ul_ZTteF > li > a.pas_li_KTbI6 |
Users are mistrustful of or confused by sites that request their location without context. Consider tying the request to a user action instead. Learn more about the geolocation permission.
Performance issues directly impact user engagement and conversion rates.
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 |
|---|---|
| Unload event listeners are deprecated and will be removed. | hm.baidu.com/hm.js?a8d6737197d542432f4ff4abc6e06384 line 1, col 274 |
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.tl_logo_search_layout_jqiD8 > form#hp_nfes_searchbar > div.cui_search > a#search_button_global div.tl_logo_search_layout_jqiD8 > form#hp_nfes_searchbar > div.cui_search > a#search_button_global |
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#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_953254 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_953254 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_954129 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_954129 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_400401 > img |
div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img div#slider_YZzAYjyCwcfA > div#slideca020e55-3f97-6ba3-d574-1fe7e4016573 > div#adsdk_951875 > img |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF |
div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- |
div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax |
div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF div#travelMap > div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > img.travelMap_index_bg_MG7ZF |
div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- div.travelMap_container_0P0Vy > div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > img.travelMap_logo_tL8u- |
div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax div.travelMap_item_box_o31Ai > div.travelMap_content_if-sw > div.travelMap_slogan_box_rmruI > img.travelMap_arrow_ZIWax |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW div.adsdk-slide > div.mp_pcShopAd_shops_eixdm > div.shop-product-item-click > img.mp_pcShopAd_shops_item-img_WD2RW |
div#fl_pop_wrap_cntr > div.fl_pop_box > div.fl_pop_pic > img div#fl_pop_wrap_cntr > div.fl_pop_box > div.fl_pop_pic > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback