- 后端: users表新增VIP字段, 4个VIP API (purchase/status/profile/members) - 后端: hot接口改按user_tracks阅读量排序 - 后端: orders表支持vip产品类型, migrate新增vip_fields迁移 - 小程序「我的」: 推广中心改为我的收益, 头像VIP标识, VIP入口卡片 - 小程序「我的」: 最近阅读显示真实章节名称 - 小程序首页: 去掉内容概览, 新增创业老板排行(4列网格) - 小程序首页: 精选推荐从hot接口获取, goToRead增加track记录 - 新增页面: VIP详情页, 会员详情页 - 开发文档精简为10个标准目录, 创建SKILL.md, 需求日志规范化 Co-authored-by: Cursor <cursoragent@cursor.com>
579 lines
9.3 KiB
Plaintext
579 lines
9.3 KiB
Plaintext
/**
|
|
* Soul创业实验 - 首页样式
|
|
* 1:1还原Web版本UI
|
|
*/
|
|
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #000000;
|
|
padding-bottom: 200rpx;
|
|
}
|
|
|
|
/* ===== 导航栏占位 ===== */
|
|
.nav-placeholder {
|
|
width: 100%;
|
|
}
|
|
|
|
/* ===== 顶部区域 ===== */
|
|
.header {
|
|
padding: 0 32rpx 32rpx;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 32rpx;
|
|
padding-top: 24rpx;
|
|
}
|
|
|
|
.logo-section {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16rpx;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
border-radius: 20rpx;
|
|
background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 8rpx 24rpx rgba(0, 206, 209, 0.3);
|
|
}
|
|
|
|
.logo-text {
|
|
color: #ffffff;
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.logo-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.logo-title {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.text-white {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.brand-color {
|
|
color: #00CED1;
|
|
}
|
|
|
|
.logo-subtitle {
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
margin-top: 4rpx;
|
|
}
|
|
|
|
.header-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16rpx;
|
|
}
|
|
|
|
.chapter-badge {
|
|
font-size: 22rpx;
|
|
color: #00CED1;
|
|
background: rgba(0, 206, 209, 0.1);
|
|
padding: 8rpx 16rpx;
|
|
border-radius: 32rpx;
|
|
}
|
|
|
|
/* ===== 搜索栏 ===== */
|
|
.search-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24rpx;
|
|
padding: 24rpx 32rpx;
|
|
background: #1c1c1e;
|
|
border-radius: 24rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.search-icon {
|
|
position: relative;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
|
|
.search-circle {
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
border: 4rpx solid rgba(255, 255, 255, 0.4);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.search-handle {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 12rpx;
|
|
height: 4rpx;
|
|
background: rgba(255, 255, 255, 0.4);
|
|
transform: rotate(45deg);
|
|
border-radius: 2rpx;
|
|
}
|
|
|
|
.search-placeholder {
|
|
font-size: 28rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
/* ===== 主内容区 ===== */
|
|
.main-content {
|
|
padding: 0 32rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* ===== Banner卡片 ===== */
|
|
.banner-card {
|
|
position: relative;
|
|
padding: 40rpx;
|
|
border-radius: 32rpx;
|
|
overflow: hidden;
|
|
background: linear-gradient(135deg, #0d3331 0%, #1a1a2e 50%, #16213e 100%);
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.banner-glow {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 256rpx;
|
|
height: 256rpx;
|
|
background: #00CED1;
|
|
border-radius: 50%;
|
|
filter: blur(120rpx);
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.banner-tag {
|
|
display: inline-block;
|
|
padding: 8rpx 16rpx;
|
|
background: #00CED1;
|
|
color: #000000;
|
|
font-size: 22rpx;
|
|
font-weight: 500;
|
|
border-radius: 8rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.banner-title {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
margin-bottom: 16rpx;
|
|
padding-right: 64rpx;
|
|
}
|
|
|
|
.banner-part {
|
|
font-size: 28rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.banner-action {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8rpx;
|
|
}
|
|
|
|
.banner-action-text {
|
|
font-size: 28rpx;
|
|
color: #00CED1;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.banner-arrow {
|
|
color: #00CED1;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
/* ===== 通用卡片 ===== */
|
|
.card {
|
|
background: #1c1c1e;
|
|
border-radius: 32rpx;
|
|
padding: 32rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|
margin: 0 0 24rpx 0;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* ===== 阅读进度卡 ===== */
|
|
.progress-card {
|
|
width: 100%;
|
|
background: #1c1c1e;
|
|
border-radius: 24rpx;
|
|
padding: 28rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|
margin: 0 0 24rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.progress-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.progress-title {
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.progress-count {
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.progress-bar-wrapper {
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.progress-bar-bg {
|
|
width: 100%;
|
|
height: 16rpx;
|
|
background: #2c2c2e;
|
|
border-radius: 8rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #00CED1 0%, #20B2AA 100%);
|
|
border-radius: 8rpx;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.progress-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
display: block;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
/* ===== 区块标题 ===== */
|
|
.section {
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.section-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.section-more {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8rpx;
|
|
}
|
|
|
|
.more-text {
|
|
font-size: 24rpx;
|
|
color: #00CED1;
|
|
}
|
|
|
|
.more-arrow {
|
|
font-size: 24rpx;
|
|
color: #00CED1;
|
|
}
|
|
|
|
/* ===== 精选推荐列表 ===== */
|
|
.featured-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.featured-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
padding: 32rpx;
|
|
background: #1c1c1e;
|
|
border-radius: 24rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.featured-item:active {
|
|
transform: scale(0.98);
|
|
background: #2c2c2e;
|
|
}
|
|
|
|
.featured-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.featured-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16rpx;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.featured-id {
|
|
font-size: 24rpx;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 22rpx;
|
|
padding: 6rpx 16rpx;
|
|
min-width: 80rpx;
|
|
border-radius: 8rpx;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
}
|
|
|
|
.tag-free {
|
|
background: rgba(0, 206, 209, 0.1);
|
|
color: #00CED1;
|
|
}
|
|
|
|
.tag-pink {
|
|
background: rgba(233, 30, 99, 0.1);
|
|
color: #E91E63;
|
|
}
|
|
|
|
.tag-purple {
|
|
background: rgba(123, 97, 255, 0.1);
|
|
color: #7B61FF;
|
|
}
|
|
|
|
.featured-title {
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.featured-part {
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.featured-arrow {
|
|
font-size: 32rpx;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
margin-top: 8rpx;
|
|
}
|
|
|
|
/* ===== 内容概览列表 ===== */
|
|
.parts-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.part-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24rpx;
|
|
padding: 32rpx;
|
|
background: #1c1c1e;
|
|
border-radius: 24rpx;
|
|
border: 2rpx solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.part-item:active {
|
|
transform: scale(0.98);
|
|
background: #2c2c2e;
|
|
}
|
|
|
|
.part-icon {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
border-radius: 16rpx;
|
|
background: linear-gradient(135deg, rgba(0, 206, 209, 0.2) 0%, rgba(32, 178, 170, 0.1) 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.part-number {
|
|
font-size: 28rpx;
|
|
font-weight: 700;
|
|
color: #00CED1;
|
|
}
|
|
|
|
.part-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.part-title {
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 4rpx;
|
|
}
|
|
|
|
.part-subtitle {
|
|
font-size: 22rpx;
|
|
color: rgba(255, 255, 255, 0.4);
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.part-arrow {
|
|
font-size: 32rpx;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ===== 序言入口 ===== */
|
|
.preface-card {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 32rpx;
|
|
border-radius: 24rpx;
|
|
background: linear-gradient(90deg, rgba(0, 206, 209, 0.1) 0%, transparent 100%);
|
|
border: 2rpx solid rgba(0, 206, 209, 0.2);
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.preface-card:active {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.preface-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.preface-title {
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.preface-desc {
|
|
font-size: 24rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
/* ===== 创业老板排行 ===== */
|
|
.members-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20rpx;
|
|
padding: 0 8rpx;
|
|
}
|
|
.member-cell {
|
|
width: calc(25% - 15rpx);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 16rpx 0;
|
|
}
|
|
.member-avatar-wrap {
|
|
position: relative;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.member-avatar {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%;
|
|
border: 3rpx solid #FFD700;
|
|
}
|
|
.member-avatar-placeholder {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
|
|
border: 3rpx solid #FFD700;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 36rpx;
|
|
color: #FFD700;
|
|
}
|
|
.member-vip-dot {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #FFD700, #FFA500);
|
|
color: #000;
|
|
font-size: 16rpx;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2rpx solid #000;
|
|
}
|
|
.member-name {
|
|
font-size: 24rpx;
|
|
color: rgba(255,255,255,0.9);
|
|
text-align: center;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 140rpx;
|
|
}
|
|
.member-project {
|
|
font-size: 20rpx;
|
|
color: rgba(255,255,255,0.4);
|
|
text-align: center;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 140rpx;
|
|
margin-top: 4rpx;
|
|
}
|
|
|
|
/* ===== 底部留白 ===== */
|
|
.bottom-space {
|
|
height: 40rpx;
|
|
}
|