index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .board {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: flex-start;
  5. width: 100%;
  6. background-color: #fff;
  7. }
  8. .board .banner {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: center;
  12. align-items: center;
  13. width: 100%;
  14. }
  15. .board .banner image {
  16. width: 100%;
  17. height: 124rpx;
  18. }
  19. .board .head {
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: flex-start;
  23. align-items: flex-start;
  24. margin: 36rpx;
  25. }
  26. .h1 {
  27. display: flex;
  28. flex-grow: 1;
  29. }
  30. .h2 {
  31. flex-grow: 2;
  32. }
  33. .h3 {
  34. flex-grow: 1;
  35. }
  36. .board .list {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: flex-start;
  40. }
  41. .board .list .item {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: flex-start;
  45. align-items: center;
  46. height: 100rpx;
  47. margin: 0 20rpx;
  48. }
  49. .board .list .item .seq {
  50. display: flex;
  51. justify-content: flex-start;
  52. width: 20%;
  53. }
  54. .board .list .item .seq text {
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. width: 48rpx;
  59. height: 48rpx;
  60. border-radius: 50%;
  61. color: white;
  62. }
  63. .color-0 {
  64. background-color:rgb(247, 81, 81);
  65. }
  66. .color-1 {
  67. background-color: yellowgreen;
  68. }
  69. .color-2 {
  70. background-color: rgb(151, 74, 223);
  71. }
  72. .color-gray {
  73. background-color: gray;
  74. }
  75. .board .list .item .header {
  76. display: flex;
  77. flex-direction: row;
  78. justify-content: flex-start;
  79. align-items: center;
  80. width: 50%;
  81. }
  82. .board .list .item .header image {
  83. width: 72rpx;
  84. height: 72rpx;
  85. border-radius: 50%;
  86. }
  87. .board .list .item .name {
  88. display: flex;
  89. flex-direction: row;
  90. flex-wrap: nowrap;
  91. margin-left: 24rpx;
  92. font-size: 32rpx;
  93. }
  94. .board .list .item .amount {
  95. display: flex;
  96. flex-direction: row;
  97. justify-content: flex-end;
  98. }
  99. .board .list .item .amount text {
  100. color:rgb(247, 81, 81);
  101. }