feat: add new features, update theme and build config

- Add 40+ new UI components including chat modules, discovery cards, photo galleries, FAQ and booking tools
- Standardize brand color across all styles by replacing $theme-color-500 SCSS variables with #0ccd58
- Add sass 1.58.3 dependency and update vite config for modern scss compiler support
- Refactor existing components (AddCarCrad, login page) and remove unused /quick/list router route
- Add utility functions for URL parameter handling
- Add static assets including custom znicons font, component images and icons
- Fix scss syntax issues and deprecation warnings
This commit is contained in:
duanshuwen
2026-05-26 22:49:52 +08:00
parent 548df7020c
commit ac8f5b5f64
159 changed files with 12439 additions and 629 deletions

View File

@@ -0,0 +1,54 @@
.faq-help-card {
padding: 34px 30px 26px;
border: 1px solid rgba(226, 232, 240, 0.72);
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
box-sizing: border-box;
}
.faq-help-card__header {
min-width: 0;
}
.faq-help-card__icon {
width: 22px;
height: 22px;
margin-right: 10px;
border: 2px solid #10b981;
color: #10b981;
line-height: 18px;
box-sizing: border-box;
}
.faq-help-card__title {
line-height: 26px;
}
.faq-help-card__divider {
height: 1px;
margin: 24px 0 18px;
background: #f1f5f9;
}
.faq-help-card__item {
min-height: 42px;
}
.faq-help-card__item:active {
opacity: 0.86;
}
.faq-help-card__item.is-disabled {
opacity: 0.55;
}
.faq-help-card__question {
min-width: 0;
line-height: 24px;
}
.faq-help-card__arrow {
width: 22px;
margin-left: 16px;
text-align: right;
line-height: 24px;
}