jiangping
2024-07-29 d9a89d83c2048a964f16ca179feb2b7f21b9d33a
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
page {
  background-color: #f7f7f7;
}
.header {
  height: 174rpx;
  padding: 36rpx 40rpx;
}
.header .line {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 36rpx;
  margin-bottom: 10rpx;
}
.header .line image {
  width: 36rpx;
  margin-right: 16rpx;
}
.header .desc {
  font-size: 26rpx;
  color: #333333;
  font-weight: 300;
}
.list {
  padding: 0 40rpx 40rpx;
}
.list .item {
  width: 670rpx;
  height: 148rpx;
  background: #FFFFFF;
  border-radius: 8rpx;
  padding: 0 30rpx;
  display: flex;
  align-items: center;
  margin-bottom: 30rpx;
}
.list .item .content {
  flex: 1;
}
.list .item .content .name {
  font-size: 30rpx;
  margin-bottom: 12rpx;
}
.list .item .content .desc {
  font-size: 24rpx;
  color: #999999;
}
.list .item .avatar {
  width: 88rpx;
  height: 88rpx;
  border-radius: 50%;
  margin-right: 24rpx;
}
.list .item .btn {
  width: 118rpx;
  height: 56rpx;
  line-height: 52rpx;
  text-align: center;
  background: #FFFFFF;
  border-radius: 8rpx;
  font-weight: 500;
  font-size: 26rpx;
  color: var(--themeColor);
  border: 1rpx solid var(--themeColor);
}