You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
2.4 KiB
146 lines
2.4 KiB
.page {
|
|
min-height: 100vh;
|
|
background-color: #ffffff;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
/* 列表容器 - 直接贴边 */
|
|
.list-container {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
/* 评价卡片 - 极简风格 */
|
|
.evaluation-card {
|
|
background-color: #ffffff;
|
|
padding: 20px 0;
|
|
position: relative;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.evaluation-card:active {
|
|
background-color: #f8f9fc;
|
|
}
|
|
|
|
/* 用户信息行 */
|
|
.user-row {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
/* 头像区域 */
|
|
.avatar-wrapper {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.avatar {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 50%;
|
|
background-color: #f0f2f6;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
|
|
}
|
|
|
|
.avatar-placeholder {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.avatar-text {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* 用户信息区 */
|
|
.user-info {
|
|
flex: 1;
|
|
}
|
|
|
|
.name-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.user-name {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #1e2a3a;
|
|
letter-spacing: -0.2px;
|
|
}
|
|
|
|
.time {
|
|
font-size: 12px;
|
|
color: #98a2b3;
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
|
|
/* 评价内容 */
|
|
.content-section {
|
|
margin-bottom: 12px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.content-text {
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: #1e2a3a;
|
|
word-break: break-word;
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
|
|
/* 卡片底部分隔线 */
|
|
.card-footer {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.divider {
|
|
height: 1px;
|
|
background-color: #eef1f4;
|
|
width: 100%;
|
|
}
|
|
|
|
/* 空状态 */
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 80px 20px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.empty-icon {
|
|
width: 140px;
|
|
height: 140px;
|
|
margin-bottom: 20px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.empty-text {
|
|
font-size: 15px;
|
|
color: #9aa6b8;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* 加载更多 */
|
|
.load-more {
|
|
text-align: center;
|
|
padding: 24px 0 30px;
|
|
}
|
|
|
|
.load-more-text {
|
|
font-size: 12px;
|
|
color: #b8c0cc;
|
|
font-weight: 400;
|
|
}
|