list.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* pages/list/list.wxss */
  2. /* pages/rank/rank.wxss */
  3. page{
  4. background: #F4F6F8;
  5. }
  6. .top{
  7. display: flex;
  8. font-size: 28rpx;
  9. padding: 24rpx 32rpx;
  10. background: #fff;
  11. margin-bottom: 20rpx;
  12. justify-content: space-between;
  13. }
  14. .item{
  15. display: flex;
  16. justify-content: space-between;
  17. font-size: 28rpx;
  18. padding: 16rpx 32rpx;
  19. }
  20. .item text{
  21. color: #333;
  22. width: 21%;
  23. text-align: right;
  24. }
  25. .item .red{
  26. color: #FF5151;
  27. }
  28. .top text{
  29. color: #999;
  30. }
  31. .item image{
  32. width: 36rpx;
  33. }
  34. .title image{
  35. width: 32rpx;
  36. position: relative;
  37. top: 7rpx;
  38. }
  39. .list{
  40. background: #fff;
  41. padding: 20rpx 0;
  42. margin-bottom: 20rpx;
  43. height: calc(100vh - 120rpx);
  44. box-sizing: border-box;
  45. }
  46. .list .note{
  47. font-size:22rpx;
  48. padding:10rpx 30rpx;
  49. color:#999;
  50. }
  51. .title{
  52. border-left: 4px solid #FF5151;
  53. color: #FF5151;
  54. font-size: 32rpx;
  55. font-weight: 500;
  56. padding-left: 20rpx;
  57. padding-right: 40rpx;
  58. margin-bottom: 20rpx;
  59. }
  60. .title navigator{
  61. float: right;
  62. color: #999;
  63. font-size: 28rpx;
  64. }
  65. .item text{
  66. display: block;
  67. }
  68. .item .name{
  69. width: 25%;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. text-align: left;
  74. margin-left: 5%;
  75. }
  76. .item text:last-child{
  77. text-align: right;
  78. }
  79. .more{
  80. text-align:center;
  81. color:#999;
  82. padding:10rpx 0;
  83. }