jiangping
2024-07-26 2faa6546a9f9ddb29f81cbc9770fc25b95703695
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
.logo_wrap {
  width: 140rpx;
  height: 140rpx;
  margin-bottom: 48rpx;
}
.logo_wrap image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.main_footer {
  position: fixed;
  bottom: 220rpx;
  left: 40rpx;
  width: 630rpx;
}
.main_footer .line {
  display: flex;
  flex-wrap: wrap;
  color: #555555;
  font-size: 24rpx;
  margin-bottom: 40rpx;
}
.main_footer .line .content {
  flex: 1;
}
.main_footer .btn {
  width: 630rpx;
  height: 88rpx;
  background: var(--themeColor);
  border-radius: 8rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 30rpx;
}
.modal {
  width: 100%;
  height: calc(100vh - 200rpx);
  padding: 40rpx;
  position: relative;
}
.modal .content {
  height: calc(100vh - 460rpx);
  overflow: auto;
  margin-bottom: 20rpx;
}
.modal .btns {
  position: fixed;
  padding: 20rpx 0rpx;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #e5e5e5;
}
.modal .btns .btn {
  width: 670rpx;
  font-weight: 500;
  font-size: 32rpx;
  color: #999999;
  text-align: center;
  margin-top: 30rpx;
}
.modal .btns .agree {
  width: 670rpx;
  height: 88rpx;
  background: #B08771;
  border-radius: 8rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.title {
  font-weight: 600;
  font-size: 44rpx;
  color: #111111;
  line-height: 60rpx;
  margin-bottom: 28rpx;
}
.container {
  min-height: 100vh;
  padding: 120rpx 60rpx;
  background-color: #fff;
}