index.less
1.92 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.scan-checkin-list-page {
min-height: 100vh;
padding: 32rpx 24rpx 40rpx;
background: linear-gradient(180deg, #f6f8fb 0%, #eef2f5 100%);
box-sizing: border-box;
position: relative;
}
.scan-checkin-list-header {
margin-bottom: 24rpx;
}
.scan-checkin-list-title {
display: block;
font-size: 40rpx;
font-weight: 600;
color: #1f2937;
line-height: 1.4;
}
.scan-checkin-list-subtitle {
display: block;
margin-top: 8rpx;
font-size: 26rpx;
color: #7b8794;
}
.scan-checkin-list-card {
display: flex;
align-items: center;
gap: 20rpx;
padding: 24rpx 28rpx;
margin-bottom: 20rpx;
border-radius: 32rpx;
background: #ffffff;
box-shadow: 0 12rpx 40rpx rgba(15, 23, 42, 0.08);
}
.scan-checkin-list-leading {
width: 68rpx;
height: 68rpx;
border-radius: 50%;
background: rgba(84, 171, 174, 0.12);
display: flex;
align-items: center;
justify-content: center;
color: #3aa9ad;
flex-shrink: 0;
}
.scan-checkin-list-content {
flex: 1;
min-width: 0;
}
.scan-checkin-list-name {
display: block;
font-size: 32rpx;
line-height: 1.45;
color: #2f3a4a;
word-break: break-all;
}
.scan-checkin-list-note {
display: block;
margin-top: 6rpx;
font-size: 24rpx;
color: #95a0ad;
}
.scan-checkin-list-action {
width: 72rpx;
height: 72rpx;
border-radius: 50%;
background: #36b5bb;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
flex-shrink: 0;
}
.scan-checkin-list-floating-button {
position: fixed;
right: 24rpx;
bottom: 120rpx;
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background: #88c055;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 12rpx 30rpx rgba(136, 192, 85, 0.35);
z-index: 20;
}
.scan-checkin-list-floating-icon {
width: 40rpx;
height: 40rpx;
}
.scan-checkin-list-floating-text {
margin-top: 10rpx;
font-size: 24rpx;
line-height: 1;
color: #ffffff;
}