151 lines
2.4 KiB
Plaintext
151 lines
2.4 KiB
Plaintext
page {
|
|
min-height: 100%;
|
|
background: linear-gradient(180deg, #f7f2ea 0%, #efe7dc 100%);
|
|
}
|
|
|
|
.learning-page {
|
|
box-sizing: border-box;
|
|
min-height: 100vh;
|
|
padding: 28rpx 20rpx 72rpx;
|
|
}
|
|
|
|
.hero-card,
|
|
.section-card,
|
|
.quick-card {
|
|
border: 1rpx solid rgba(84, 58, 29, 0.08);
|
|
border-radius: 28rpx;
|
|
background: rgba(255, 251, 244, 0.92);
|
|
box-shadow: 0 10rpx 26rpx rgba(78, 50, 22, 0.06);
|
|
}
|
|
|
|
.hero-card {
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.hero-card__title,
|
|
.section-card__title,
|
|
.quick-card__title,
|
|
.timeline-item__title {
|
|
display: block;
|
|
color: #2f261d;
|
|
font-family: 'STSong', 'Songti SC', serif;
|
|
font-size: 34rpx;
|
|
font-weight: 700;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.hero-card__desc,
|
|
.quick-card__desc,
|
|
.timeline-item__desc {
|
|
display: block;
|
|
margin-top: 10rpx;
|
|
color: #7b6d60;
|
|
font-size: 24rpx;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.stats-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 14rpx -5rpx 0;
|
|
}
|
|
|
|
.stat-pill {
|
|
box-sizing: border-box;
|
|
width: 25%;
|
|
padding: 5rpx;
|
|
}
|
|
|
|
.stat-pill__value,
|
|
.stat-pill__label {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-pill__value {
|
|
padding: 12rpx 0 6rpx;
|
|
border-radius: 18rpx 18rpx 0 0;
|
|
background: rgba(255, 250, 242, 0.8);
|
|
color: #2f261d;
|
|
font-size: 28rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.stat-pill__label {
|
|
padding: 0 0 12rpx;
|
|
border-radius: 0 0 18rpx 18rpx;
|
|
background: rgba(255, 250, 242, 0.8);
|
|
color: #7b6d60;
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
.quick-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 12rpx -6rpx 0;
|
|
}
|
|
|
|
.quick-card {
|
|
box-sizing: border-box;
|
|
width: 50%;
|
|
margin-top: 12rpx;
|
|
padding: 24rpx 18rpx;
|
|
margin-left: 6rpx;
|
|
margin-right: 6rpx;
|
|
}
|
|
|
|
.quick-card__tag {
|
|
display: inline-block;
|
|
padding: 8rpx 12rpx;
|
|
border-radius: 999rpx;
|
|
background: rgba(84, 58, 29, 0.08);
|
|
color: #6d4d2f;
|
|
font-size: 18rpx;
|
|
line-height: 1;
|
|
}
|
|
|
|
.quick-card__title {
|
|
margin-top: 14rpx;
|
|
}
|
|
|
|
.section-card {
|
|
margin-top: 18rpx;
|
|
padding: 24rpx;
|
|
}
|
|
|
|
.timeline-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 16rpx;
|
|
padding-top: 16rpx;
|
|
border-top: 1rpx solid rgba(84, 58, 29, 0.08);
|
|
}
|
|
|
|
.timeline-item:first-of-type {
|
|
margin-top: 10rpx;
|
|
padding-top: 0;
|
|
border-top: 0;
|
|
}
|
|
|
|
.timeline-item__icon {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border-radius: 18rpx;
|
|
background: rgba(84, 58, 29, 0.08);
|
|
color: #6d4d2f;
|
|
font-size: 26rpx;
|
|
line-height: 72rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.timeline-item__body {
|
|
flex: 1;
|
|
margin-left: 14rpx;
|
|
}
|
|
|
|
.timeline-item__arrow {
|
|
color: #b4946a;
|
|
font-size: 28rpx;
|
|
line-height: 1;
|
|
}
|