k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
.list {
  padding: 12rpx 32rpx;
}
.list .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100rpx;
  border-bottom: 2rpx solid #E5E5E5;
}
.list .line .name {
  font-size: 30rpx;
}
.list .line .icon {
  width: 40rpx;
}
.modal {
  width: 610rpx;
  height: 450rpx;
  background: #FFFFFF;
  border-radius: 8rpx;
  padding: 60rpx 40rpx 30rpx;
}
.modal .title {
  font-weight: 500;
  font-size: 36rpx;
  color: #222222;
  margin-bottom: 30rpx;
}
.modal .text {
  color: #555555;
  margin-bottom: 30rpx;
  padding-bottom: 40rpx;
  border-bottom: 2rpx solid #E5E5E5;
}
.modal .btns {
  display: flex;
  justify-content: space-between;
}
.modal .btns .btn {
  width: 254rpx;
  height: 88rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7F7F7;
  border-radius: 8rpx;
  font-weight: 500;
  font-size: 30rpx;
  color: #555555;
}
.modal .btns .cancel {
  color: #fff;
  background-color: var(--themeColor);
}