zhongshujie
2024-12-20 32986b54a0e2661f7ad6ed79f3ef12c4289eace9
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* packageCourse/pages/course/index.wxss */
 
.demo-section__content {
  margin-top: 32rpx;
  margin-bottom: 48rpx;
}
 
.contentBox {
  width: 100%;
  height: calc(100vh - env(safe-area-inset-bottom));
  background-color: #eee;
  font-size: 28rpx;
}
 
.refresh-container {
  display: block;
  width: 100vw;
}
 
.loading {
  display: block;
  width: 100%;
  height: 180rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.bottom-loading {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100rpx;
  padding-bottom: env(safe-area-inset-bottom);
}
 
.header {
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20rpx;
  box-sizing: border-box;
  border-top: 1rpx solid #eee;
  border-bottom: 1rpx solid #eee;
  background-color: #fff;
}
 
.header .t-search__input-box {
  height: 70rpx !important;
  font-size: 28rpx;
}
 
.contentList {
  width: 100%;
  height: calc(100% - 55px);
  background-color: #fff;
}
 
.content {
  height: 100%;
}
 
.userList {
  padding: 20rpx;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1rpx solid #eee;
}
 
.userInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.user {
  margin-left: 20rpx;
}
 
.block--select {
  width: 85vw;
  height: 180px;
  border-radius: 10rpx;
  position: relative;
}
 
.block-select-title {
  font-size: 30rpx;
  padding: 20rpx;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
 
.block-select-radio .groupRadio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 50rpx 20rpx;
  box-sizing: border-box;
}
 
.block-select-radio .radioItem {
  margin: 0 20rpx;
}
 
.block-select-confirm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 120rpx;
  padding: 0rpx 20rpx;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
}
 
 
/* gujia */
.group {
  display: flex;
  align-items: center;
  margin-top: 32rpx;
  margin-bottom: 30rpx;
}
 
.group-avatar {
  margin-right: 24rpx;
}
 
.group-content {
  width: 566rpx;
}