133 lines
2.5 KiB
Plaintext
133 lines
2.5 KiB
Plaintext
page {
|
|
background: #fff;
|
|
}
|
|
.evaluation-detail {
|
|
padding: 30rpx 20rpx;
|
|
}
|
|
/* 用户信息区域 */
|
|
.user-section {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.user-section .avatar {
|
|
width: 76rpx;
|
|
height: 76rpx;
|
|
border-radius: 50%;
|
|
margin-right: 14rpx;
|
|
}
|
|
.user-section .user-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
}
|
|
.user-section .user-info .username {
|
|
font-weight: 400;
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
line-height: 42rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.user-section .user-info .time {
|
|
font-weight: 400;
|
|
font-size: 22rpx;
|
|
color: #999999;
|
|
line-height: 30rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.user-contant {
|
|
/* 评分头部 */
|
|
/* 各项评分 */
|
|
/* 评论内容 */
|
|
/* 图片区域 */
|
|
}
|
|
.user-contant .rating-header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 20rpx;
|
|
}
|
|
.user-contant .rating-header .tag {
|
|
height: 50rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.user-contant .rating-header .stars {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 10rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.user-contant .rating-header .stars .star-icon {
|
|
width: 34rpx;
|
|
height: 34rpx;
|
|
margin-right: 2rpx;
|
|
}
|
|
.user-contant .rating-header .score {
|
|
font-weight: 400;
|
|
font-size: 26rpx;
|
|
color: #E8101E;
|
|
line-height: 37rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.user-contant .categories {
|
|
margin-top: 10rpx;
|
|
display: flex;
|
|
gap: 20rpx;
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #7C7C7C;
|
|
line-height: 33rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.user-contant .comment {
|
|
margin-top: 30rpx;
|
|
font-weight: 400;
|
|
font-size: 26rpx;
|
|
color: #333333;
|
|
line-height: 46rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.user-contant .photos {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
margin-top: 20rpx;
|
|
gap: 5rpx;
|
|
position: relative;
|
|
}
|
|
.user-contant .photos .photo {
|
|
width: 226rpx;
|
|
height: 226rpx;
|
|
border-radius: 6rpx;
|
|
object-fit: cover;
|
|
/* background-color: #f5f5f5; */
|
|
}
|
|
.user-contant .photos .more {
|
|
width: 59rpx;
|
|
height: 28rpx;
|
|
background: rgba(51, 51, 51, 0.4);
|
|
border-radius: 14rpx;
|
|
font-weight: 400;
|
|
font-size: 22rpx;
|
|
color: #FFFFFF;
|
|
line-height: 30rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
bottom: 10rpx;
|
|
right: 10rpx;
|
|
}
|
|
.user-contant .photos .more .more-img {
|
|
width: 23rpx;
|
|
height: 17rpx;
|
|
margin-right: 5rpx;
|
|
}
|
|
|