| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .stars-container {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- justify-content: flex-start;
- }
- .nick{
- width: 60%;
- font-size: 20rpx;
- color: black;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .personHot{
- width: 40%;
- display: flex;
- flex-direction: row;
- }
- .stars {
- display: flex;
- flex-direction: row;
- height: 17rpx;
- margin-left: 10rpx;
- margin-right: 24rpx;
- margin-top: 6rpx;
- }
- .stars image {
- padding-left: 3rpx;
- height: 17rpx;
- width: 17rpx;
- }
- .score{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .starScore {
- font-size: 20rpx;
- color: blueviolet;
- }
- .starScoreNull {
- color: orangered;
- font-size: 20rpx;
- }
|