xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
139
/* pages/findAdjust/index.wxss */
.findAdjust {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
}
 
.findAdjust-scroll {
  flex: 1;
  overflow: hidden;
  padding: 24rpx;
}
 
.find-adjust-list-item {
  position: relative;
  background-color: #ffffff;
  padding: 32rpx;
  border-radius: var(--border-radius-card-sm);
  margin-bottom: 16rpx;
  display: flex;
}
 
.find-adjust-list-item:last-child {
  margin-bottom: 0;
}
 
.find-adjust-list-item:last-child {
  margin-bottom: 0;
}
 
.avatar-img-box {
  height: 116rpx;
  width: 116rpx;
  margin-right: 32rpx;
}
 
.avatar-img {
  width: 100%;
  height: 100%;
}
 
.list-item-right {
  flex: 1;
  overflow: hidden;
}
 
.avatar-name {
  font-weight: 550;
  margin-bottom: 16rpx;
}
 
.avatar-subTitle {
  color: var(--second-text-color);
  font-size: 24rpx;
  line-height: 24rpx;
  margin-bottom: 16rpx;
  display: flex;
  flex-wrap: wrap;
}
 
.avatar-subTitle-divider {
  margin: 0 8rpx;
  width: 2rpx;
  background-color: var(--border-color);
}
 
.avatar-subTitle-tagBox {
  margin-bottom: 8rpx;
  align-items: center;
}
 
.avatar-subTitle-tag {
  padding: 8rpx;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4rpx;
  margin-right: 8rpx;
  margin-bottom: 8rpx;
}
 
.list-item-btn {
  padding: 6rpx;
  border-radius: 6rpx;
  border: 2rpx solid var(--main-color);
  font-size: 22rpx;
  line-height: 22rpx;
  color: var(--main-color);
  display: inline-block;
}
 
.find-icon {
  width: 20rpx;
  height: 20rpx;
  margin-right: 8rpx;
}
 
.guess-subTitle {
  padding: 32rpx 0;
}
 
.guess-main {
  margin-bottom: 146rpx;
  padding: 0 32rpx;
}
 
.guess-item {
  position: relative;
  border: 2rpx solid rgba(0, 0, 0, 0.2);
  border-radius: 40rpx;
  text-align: center;
  padding: 24rpx 0;
  line-height: 28rpx;
  margin-bottom: 32rpx;
}
 
.guess-item-active {
  border-color: var(--main-color);
  color: var(--main-color);
  background-color: var(--red-1);
}
 
.guess-check {
  position: absolute;
  top: -16rpx;
  right: 0;
  color: var(--main-color);
  background: #fff;
  border-radius: 50%;
}
 
.guess-bottom .btn:first-child {
  margin-right: 32rpx;
}
 
.drop-down-select-submenu {
  overflow: hidden !important;
}