list.wxss 1.4 KB

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