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
| /* pages/home/integral/integral.wxss */
|
| .integral-view{
| width: 100vw;
| }
|
| .integral-top{
| width: 172rpx;
| height: 172rpx;
| background: #F07207;
| box-shadow: 0px 4rpx 26rpx 0px rgba(184,176,169,0.5);
| border-radius: 50%;
| margin: 0 auto;
| display: flex;
| justify-content: center;
| flex-direction: column;
| text-align: center;
| align-items: center;
| }
| .integral-top view:nth-of-type(1){
| font-size: 24rpx;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 500;
| color: #FFFFFF;
| }
| .integral-top view:nth-of-type(2){
| font-size: 45rpx;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 500;
| color: #FFFFFF;
| }
|
| .intergral-list{
| width: 676rpx;
| margin: 0 auto;
| display: flex;
| justify-content: space-between;
| align-items: center;
| flex-wrap: wrap;
| margin-top: 20rpx;
| }
|
| .list-info{
| width: 288rpx;
| min-height: 380rpx;
| text-align: center;
| border-bottom: 1rpx solid rgba(39, 40, 45, .06);
| margin-top: 20rpx;
| }
|
| .list-info .name{
| font-size: 30rpx;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 600;
| color: #333333;
| text-align: center;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| .list-info .num{
| font-size: 24rpx;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 500;
| color: #333333;
| padding-top:20rpx ;
| }
|
|