74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
/* pages/reviews/reviews.wxss */
|
|
|
|
/* 全局样式 */
|
|
.container {
|
|
background-color: #f5f5f5;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
/* 顶部导航栏 */
|
|
.navbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background-color: #007aff;
|
|
padding: 20rpx;
|
|
color: #ffffff;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.back-btn {
|
|
color: #ffffff;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* 评价列表 */
|
|
.reviews-list {
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.review-item {
|
|
background-color: #ffffff;
|
|
border-radius: 10rpx;
|
|
padding: 20rpx;
|
|
margin-bottom: 20rpx;
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.username {
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.rating {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.star {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-left: 5rpx;
|
|
}
|
|
|
|
.comment {
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
} |