- miniprogram/config.js: BASE_URL 指向 http://192.227.237.8:3001 - 动作标题中文化(nameZh),搜索匹配 name/nameZh/nameEn - 新增计划/收藏/我的 等页面与组件 - 后端 Docker 化(Dockerfile/.dockerignore)与翻译脚本 - .gitignore 补充 .DS_Store
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
.pc {
|
|
background: var(--surface);
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
border: 1rpx solid var(--line);
|
|
box-shadow: var(--shadow);
|
|
width: 100%;
|
|
}
|
|
.pc__cover { position: relative; width: 100%; height: 220rpx; background: var(--surface-2); }
|
|
.pc__img { width: 100%; height: 100%; display: block; }
|
|
.pc__badge {
|
|
position: absolute; left: 16rpx; top: 16rpx;
|
|
width: 64rpx; height: 64rpx; border-radius: 18rpx;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 38rpx; line-height: 1;
|
|
}
|
|
.pc__top { padding: 28rpx; display: flex; }
|
|
.pc__emoji {
|
|
width: 96rpx; height: 96rpx; border-radius: 24rpx;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-size: 52rpx; line-height: 1;
|
|
}
|
|
.pc__body { padding: 18rpx 22rpx 8rpx; }
|
|
.pc__name { font-size: 30rpx; font-weight: 700; }
|
|
.pc__desc {
|
|
margin-top: 10rpx;
|
|
font-size: 24rpx; color: var(--text-2); line-height: 1.5;
|
|
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
|
|
}
|
|
.pc__foot {
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
padding: 16rpx 22rpx 22rpx;
|
|
border-top: 1rpx solid var(--line);
|
|
margin-top: 8rpx;
|
|
}
|
|
.pc__count { font-size: 24rpx; color: var(--text-2); }
|
|
.pc__arrow { font-size: 36rpx; color: var(--gold); line-height: 1; }
|