k94314517
2024-08-15 89e7ed902461f28d6a7dd3e6c927eaf40b154f5e
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
.avatar{
  width: 140rpx;
  height: 140rpx;
  border-radius: 50%;
  margin: 130rpx auto 30rpx;
}
.home_title{
  font-weight: 500;
  font-size: 40rpx;
  margin-bottom: 16rpx;
  text-align: center;
}
.placeholder9{
  text-align: center;
}
page{
  overflow: hidden;
}
.btns{
  margin-top: 120rpx;
  padding: 0 62rpx;
  .btn{
    width: 100%;
    height: 88rpx;
    line-height: 86rpx;
    border-radius: 8rpx;
    border: 1rpx solid #B08771;
    margin-bottom: 30rpx;
    font-size: 30rpx;
    color: #B08771;
    display: flex;
    justify-content: center;
  }
  .speedy{
    color: #fff;
    background-color: #B08771;
  }
  .line{
    display: flex;
    align-items: center;
    height: 120rpx;
    border-bottom: 1rpx solid #E5E5E5;
    .icon{
      width: 40rpx;
      height: 40rpx;
    }
    .input{
      flex: 1;
    }
  }
  .sub_btn{
    margin-top: 60rpx;
    margin-bottom: 60rpx;
  }
  .protocol{
    display: flex;
    flex-wrap: wrap;
    color: #555555;
    font-size: 24rpx;
    margin-bottom: 40rpx;
    .content{
      flex: 1;
    }
  }
}
.modal{
  width: 100%;
  height: calc( 100vh - 200rpx );
  padding: 40rpx;
  position: relative;
  .content{
    height: calc( 100% - 180rpx );
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20rpx;
  }
  .btns{
    position: fixed;
    padding: 20rpx 0rpx;
    width: 100%; 
    z-index: 999;
    bottom: 12rpx;
    border-top: 1px solid #e5e5e5;
    .reject{
      width: 670rpx;
      font-weight: 500;
      font-size: 32rpx;
      color: #999999;
      text-align: center;
      margin-top: 30rpx;
      height: 60rpx;
    }
    .agree{
      width: 670rpx;
      height: 90rpx;
      background: #B08771;
      border-radius: 8rpx;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
  }
}