| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .stars-container {
- width: 100%;
- height: 30rpx;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- justify-content: flex-start;
- }
- .stars-container-starsBox{
- height: 30rpx;
- width: 20rpx;
- margin-right: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .stars-container-starsBox image {
- height: 20rpx;
- width: 20rpx;
- }
- .stars-container-score{
- height: 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-left: 20rpx;
- }
- .stars-container-score-starScore {
- margin-left: 10rpx;
- color: #ea2000;
- font-size: 20rpx;
- }
- .stars-container-score-starScoreNull {
- margin-left: 10rpx;
- color: #ea2000;
- font-size: 20rpx;
- }
|