rank.wxss 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/rank/rank.wxss */
  2. page{
  3. background: #F4F6F8;
  4. }
  5. .top{
  6. display: flex;
  7. font-size: 28rpx;
  8. padding: 24rpx 32rpx;
  9. background: #fff;
  10. margin-bottom: 20rpx;
  11. justify-content: space-between;
  12. }
  13. .item{
  14. display: flex;
  15. justify-content: space-between;
  16. font-size: 28rpx;
  17. padding: 16rpx 32rpx;
  18. }
  19. .item text{
  20. color: #333;
  21. }
  22. .item .red{
  23. color: #FF5151;
  24. }
  25. .top text{
  26. color: #999;
  27. }
  28. .item image{
  29. width: 36rpx;
  30. }
  31. .title image{
  32. width: 32rpx;
  33. position: relative;
  34. top: 7rpx;
  35. }
  36. .list{
  37. background: #fff;
  38. padding: 30rpx 0;
  39. margin-bottom: 20rpx;
  40. }
  41. .list .note{
  42. font-size:22rpx;
  43. padding:10rpx 30rpx;
  44. color:#999;
  45. }
  46. .title{
  47. border-left: 4px solid #FF5151;
  48. color: #FF5151;
  49. font-size: 32rpx;
  50. font-weight: 500;
  51. padding-left: 20rpx;
  52. padding-right: 40rpx;
  53. margin-bottom: 20rpx;
  54. }
  55. .title navigator{
  56. float: right;
  57. color: #999;
  58. font-size: 28rpx;
  59. }
  60. .item text{
  61. display: block;
  62. }
  63. .name{
  64. width: 112rpx;
  65. overflow: hidden;
  66. text-overflow: ellipsis;
  67. white-space: nowrap;
  68. }