index.wxss 1.7 KB

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