优化多个页面样式及组件功能,优化课程、发现、训练、首页等核心页面样式

This commit is contained in:
future
2026-06-08 14:54:36 +08:00
committed by liwentao
parent c909b023c7
commit d3b978938b
7 changed files with 222 additions and 87 deletions
+16 -10
View File
@@ -48,7 +48,7 @@ function goPointsMall() {
<style lang="scss" scoped>
.tab-page {
min-height: 100vh;
background-color: #f0f4f8;
background: $gradient-sky;
padding-bottom: 160rpx;
}
@@ -59,15 +59,15 @@ function goPointsMall() {
.tab-page__title {
display: block;
font-size: 40rpx;
font-weight: 700;
color: #1a202c;
font-weight: $font-weight-bold;
color: $text-dark;
}
.tab-page__subtitle {
display: block;
margin-top: 8rpx;
font-size: 24rpx;
color: #64748b;
color: $text-muted;
}
.discover-links {
@@ -79,23 +79,29 @@ function goPointsMall() {
.discover-link {
padding: 24rpx 28rpx;
border-radius: 20rpx;
background: #fff;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
border-radius: $radius-md;
background: $bg-white;
box-shadow: $shadow-sm;
border: 1px solid $border-light;
transition: all 0.2s ease;
}
.discover-link:active {
transform: scale(0.98);
}
.discover-link__title {
display: block;
font-size: 28rpx;
font-weight: 600;
color: #1e2a3a;
font-weight: $font-weight-bold;
color: $text-dark;
}
.discover-link__desc {
display: block;
margin-top: 6rpx;
font-size: 22rpx;
color: #64748b;
color: $text-muted;
}
.bottom-placeholder {