|
|
@@ -0,0 +1,117 @@
|
|
|
+.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%;
|
|
|
+}
|
|
|
+
|
|
|
+.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);
|
|
|
+}
|