# Component Patterns Library ## Navigation ### Top App Bar (Material 3 + Apple 混合风格) ```html

Page Title

``` ### Side Navigation Rail (Material 3) ```html ``` --- ## Cards ### Product Card (Pinterest 风格) ```html
...

Category

Product Name

``` ### Stats Card (Dashboard) ```html
Total Revenue

$48,295

+12.5% from last month
``` --- ## Forms ### Floating Label Input (Material 3) ```html
Email address
We'll never share your email
``` --- ## Buttons — Complete System ```html ``` --- ## Feedback Components ### Toast / Snackbar (Material 3) ```html
Changes saved successfully
``` ### Badge ```css .badge { display: inline-flex; align-items: center; justify-content: center; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 8px; background: var(--error); color: var(--on-error); font-size: 11px; font-weight: 600; line-height: 1; } .badge--dot { width: 8px; height: 8px; padding: 0; min-width: unset; border-radius: 50%; } .badge--large { min-width: 24px; height: 24px; border-radius: 12px; font-size: 12px; padding: 0 8px; } ``` --- ## Page Skeleton / Loading ```html
```