1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
| page {
| display: flex;
| flex-direction: column;
| height: 100%;
| }
| .activityMessage-main{
| background: #F9FBFF;
| }
| .activity-item{
| margin: 1vh 1vh 0 1vh;
| border:1px solid rgba(247, 251, 255, 1);
| box-shadow:0px 4px 8px 0px rgba(136, 136, 136, 0.11);
| border-radius: 8px;
| }
| .content-top{
| display: flex;
| justify-content: center;
| align-items: center;
| height: 352rpx;
| }
| .content-top image{
| width:100%;
| height: 100%;
| border:none;
| border-radius: 8px 8px 0 0;
| }
| .content-bottom{
| display: flex;
| flex-direction: row;
| padding: 10rpx 20rpx;
| justify-content: center;
| align-items: center;
| }
| .detail-left{
| flex: 1;
| }
| .headLineTitle{
| color: #3D444D;
| font-size:14px;
| }
| .headLineInfo{
| display: flex;
| flex-direction: columns;
| font-size: 12px;
| color: #8C9198;
| }
| .status-btn{
| height: 20px;
| border-radius: 10px;
| min-width: 20px;
| color: #fff;
| line-height: 20px;
| text-align: center;
| padding: 0 6px;
| font-size: 12px;
| font-weight: normal;
| white-space: nowrap;
| -webkit-transform-origin: -10% center;
| -ms-transform-origin: -10% center;
| transform-origin: -10% center;
| -webkit-box-shadow: 0 0 0 1px #fff;
| box-shadow: 0 0 0 1px #fff;
| }
|
| .load{
| display: flex;
| justify-content: center;
| color: #999;
| font-size: 14px;
| margin: 2vh;
| }
|
|