riku
2024-08-14 b4033c002e21c1376d68be61622da56182a962e9
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
.filter-popup-wrap {
  width: 80vw;
  height: 100vh;
  /* display: flex;
  justify-content: space-between; */
  position: relative;
  background: #fff;
  border-top-left-radius: 32rpx;
  border-bottom-left-radius: 32rpx;
}
 
.filter-title {
  color: var(--td-text-color-primary);
  font-size: var(--td-font-size-m);
  padding-top: var(--td-spacer-1);
  padding-left: var(--td-spacer-2);
  font-weight: 550;
}
 
.filter-picker{
  display: flex;
  font-size: var(--td-font-size-base);
  padding: var(--td-spacer-1);
  align-items: center;
  justify-content: center;
  background-color: var(--td-bg-color);
}
 
.filter-btns-wrap {
  width: 100%;
  position: absolute;
  bottom: calc(20rpx + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: row;
  border-radius: 10rpx 0 0 10rpx;
  padding: 16rpx 32rpx;
  border-top: 1rpx solid #e5e5e5;
  box-sizing: border-box;
}
 
.filter-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28rpx;
  font-weight: 500;
  height: 80rpx;
}
 
.btn-reset {
  color: #fa4126;
  background: rgba(255, 255, 255, 1);
  position: relative;
  border: 1rpx solid #fa4126;
  border-radius: 84rpx 0 0 84rpx;
}
 
.btn-confirm {
  border-radius: 0 84rpx 84rpx 0;
  color: #fff;
  background: #fa4126;
  border: 1rpx solid #fa4126;
}
 
.t-class-cell {
  background-color: var(--td-gray-color-1) !important;
  --td-cell-title-color: var(--td-font-gray-3)
}