rank.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. width: 21%;
  22. text-align: right;
  23. }
  24. .item .red{
  25. color: #FF5151;
  26. }
  27. .top text{
  28. color: #999;
  29. }
  30. .item image{
  31. width: 36rpx;
  32. }
  33. .title image{
  34. width: 32rpx;
  35. position: relative;
  36. top: 7rpx;
  37. }
  38. .list{
  39. background: #fff;
  40. padding: 30rpx 0;
  41. margin-bottom: 20rpx;
  42. }
  43. .list .note{
  44. font-size:22rpx;
  45. padding:10rpx 30rpx;
  46. color:#999;
  47. }
  48. .title{
  49. border-left: 4px solid #FF5151;
  50. color: #FF5151;
  51. font-size: 32rpx;
  52. font-weight: 500;
  53. padding-left: 20rpx;
  54. padding-right: 40rpx;
  55. margin-bottom: 20rpx;
  56. }
  57. .title navigator{
  58. float: right;
  59. color: #999;
  60. font-size: 28rpx;
  61. }
  62. .item text{
  63. display: block;
  64. }
  65. .item .name{
  66. width: 25%;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. white-space: nowrap;
  70. text-align: left;
  71. margin-left: 5%;
  72. }