| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- .board {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 100%;
- background-color: #fff;
- }
- .board .banner {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- }
- .board .banner image {
- width: 100%;
- height: 124rpx;
- }
- .board .head {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- margin: 36rpx;
- }
- .h1 {
- display: flex;
- flex-grow: 1;
- }
- .h2 {
- flex-grow: 2;
- }
- .h3 {
- flex-grow: 1;
- }
- .board .list {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- }
- .board .list .item {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 100rpx;
- margin: 0 20rpx;
- }
- .board .list .item .seq {
- display: flex;
- justify-content: flex-start;
- width: 20%;
- }
- .board .list .item .seq text {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- color: white;
- }
- .color-0 {
- background-color: rgb(247, 81, 81);
- }
- .color-1 {
- background-color: yellowgreen;
- }
- .color-2 {
- background-color: rgb(151, 74, 223);
- }
- .color-gray {
- background-color: gray;
- }
- .board .list .item .header {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- width: 50%;
- }
- .board .list .item .header image {
- width: 72rpx;
- height: 72rpx;
- border-radius: 50%;
- }
- .board .list .item .name {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- margin-left: 24rpx;
- font-size: 32rpx;
- }
- .board .list .item .amount {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .board .list .item .amount text {
- color: rgb(247, 81, 81);
- }
|