Files
YGChatCS/src/pages-aigc/useTemplate/components/VersionOptionCard/styles/index.scss
duanshuwen b381c712df feat(aigc): add template, recharge & points pages
This commit adds the full AIGC feature set including template usage flow, points recharge and transaction ledger pages, along with all supporting components, styles and data files. It also updates the home page navigation and registers all new pages in the project's pages configuration.
2026-07-05 19:34:55 +08:00

60 lines
1.1 KiB
SCSS

.version-option-card {
min-height: 84px;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 10px;
padding: 14px 16px;
border: 1px solid rgba(255, 255, 255, 0.72);
border-radius: 20px;
background: rgba(255, 255, 255, 0.82);
text-align: left;
box-shadow: 0 8px 18px rgba(18, 48, 56, 0.05);
box-sizing: border-box;
transition: border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.version-option-card.is-selected {
border-color: rgba(32, 207, 117, 0.64);
box-shadow: 0 10px 22px rgba(32, 207, 117, 0.1);
}
.version-option-card.is-pressed {
opacity: 0.82;
}
.version-option-copy {
min-width: 0;
}
.version-option-title,
.version-option-desc,
.version-option-cost {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.version-option-title {
color: #172033;
font-size: 15px;
line-height: 21px;
font-weight: 900;
}
.version-option-desc {
margin-top: 4px;
color: #7a8596;
font-size: 11px;
line-height: 16px;
font-weight: 800;
}
.version-option-cost {
color: #12a765;
font-size: 15px;
line-height: 20px;
font-weight: 900;
}