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
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
140
141
142
143
144
145
146
147
/* pages/calculator/index.wxss */
.container {
  overflow: auto;
}
.main_bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.top-head-transparent {
  background-color: transparent!important;
  color: #222222 !important;
}
 
.top-head-transparent .van-icon.van-icon-arrow-left {
  font-size: 40rpx!important;
  color: #222222 !important;
}
 
.calculator {
  padding: 40rpx;
}
 
.calculator .title {
  font-size: 52rpx;
  padding: 60rpx 0 20rpx;
}
 
.calculator .tips {
  font-size: 28rpx;
  margin-bottom: 70rpx;
  font-weight: 300;
  color: #333333;
}
 
.calculator .form-item {
  display: flex;
  height: 88rpx;
  line-height: 88rpx;
  margin-bottom: 40rpx;
}
 
.calculator .input-box {
  display: flex;
  flex: 1;
  border: 1px solid #B08771;
  padding: 0 40rpx;
  border-radius: 8rpx;
}
 
.calculator .input-box .input,
.calculator .input-box .select {
  flex: 1;
  height: 88rpx;
  line-height: 88rpx;
}
 
.calculator .input-box .placeholder {
  color: #999999;
}
 
.calculator .submit-btn {
  text-align: center;
  line-height: 100rpx;
  height: 100rpx;
  background: #B08771;
  border-radius: 8rpx;
  width: 100%;
  font-size: 32rpx;
  color: #fff;
}
 
.popup-content .btn {
  padding: 40rpx;
}
 
.popup-content .btn-cancel {
  color: #999999;
}
 
.popup-content .btn-confirm {
  color: #222222;
}
 
.picker {
  height: 100%;
  width: 100%;
}
 
.results {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  color: #222;
  text-align: center;
  margin: 0 30rpx 60rpx;
  border-radius: 8rpx;
  padding: 30rpx;
}
 
.results-title {
  font-size: 32rpx;
  font-weight: bold;
  margin-bottom: 60rpx;
  margin-top: 30rpx;
}
 
.results .thead {
  font-size: 26rpx;
  color: #555555;
  margin-bottom: 32rpx;
}
 
.results .item {
  background-color: #fff;
  margin-bottom: 40rpx;
  border-radius: 8rpx;
  overflow: hidden;
}
 
.results .item:last-of-type {
  margin-bottom: 0;
}
 
.results .item .td {
  line-height: 74rpx;
  height: 74rpx;
}
 
.results .item .th {
  color: #7C4B31;
  background-color: rgba(176, 135, 113, 0.2);
}
 
.results .name {
  width: 35%;
}
 
.results .rate {
  width: 30%;
}
 
.results .money {
  width: 35%;
}