|
@@ -1,209 +1,204 @@
|
1
|
1
|
.SubmitButton {
|
2
|
|
- background: rgba(239,39,58,1);
|
3
|
|
- border-radius: 7px;
|
|
2
|
+ background: rgba(239, 39, 58, 1);
|
4
|
3
|
border: 0px;
|
|
4
|
+ border-radius: 7px;
|
5
|
5
|
}
|
6
|
6
|
.text {
|
7
|
|
- color: rgba(239,39,58,1);
|
|
7
|
+ color: rgba(239, 39, 58, 1);
|
8
|
8
|
}
|
9
|
9
|
.SelectFrom {
|
10
|
10
|
width: 180px;
|
11
|
11
|
background: #ffffff;
|
12
|
|
- border-radius: 7px;
|
13
|
12
|
border: 1px solid #dbdbdb;
|
|
13
|
+ border-radius: 7px;
|
14
|
14
|
}
|
15
|
15
|
.addButton {
|
|
16
|
+ margin: 10px 0px;
|
16
|
17
|
background: #50be00;
|
17
|
|
- border-radius: 4px;
|
18
|
18
|
border: 0px;
|
19
|
|
- margin: 10px 0px;
|
|
19
|
+ border-radius: 4px;
|
20
|
20
|
}
|
21
|
21
|
.cardText {
|
22
|
|
- color: #333;
|
|
22
|
+ position: relative;
|
23
|
23
|
display: flex;
|
24
|
24
|
align-items: center;
|
25
|
|
- position: relative;
|
26
|
|
- line-height: 1.5;
|
27
|
|
- font-size: 0.106rem;
|
28
|
25
|
margin-bottom: 0.08rem;
|
29
|
|
-
|
|
26
|
+ color: #333;
|
|
27
|
+ font-size: 0.106rem;
|
|
28
|
+ line-height: 1.5;
|
30
|
29
|
}
|
31
|
|
-.cardItem{
|
32
|
|
- color: #666;
|
|
30
|
+.cardItem {
|
33
|
31
|
display: flex;
|
34
|
|
- align-items: center;
|
35
|
|
- line-height: 1.5;
|
|
32
|
+ align-items: center;
|
|
33
|
+ margin-bottom: 0.08rem;
|
|
34
|
+ color: #666;
|
36
|
35
|
font-size: 0.106rem;
|
37
|
|
- margin-bottom: 0.08rem;
|
|
36
|
+ line-height: 1.5;
|
38
|
37
|
}
|
39
|
38
|
.ediText {
|
40
|
|
- font-size: 0.106rem;
|
41
|
|
- color: #ff925c;
|
42
|
|
- line-height: 24px;
|
43
|
39
|
position: absolute;
|
44
|
40
|
right: 0;
|
|
41
|
+ color: #ff925c;
|
|
42
|
+ font-size: 0.106rem;
|
|
43
|
+ line-height: 24px;
|
45
|
44
|
}
|
46
|
|
-.title{
|
|
45
|
+.title {
|
47
|
46
|
display: inline-block;
|
48
|
|
- width: 0.54rem;
|
49
|
47
|
justify-content: space-between;
|
|
48
|
+ width: 0.54rem;
|
50
|
49
|
text-align: justify;
|
51
|
|
- text-align-last:justify
|
|
50
|
+ text-align-last: justify;
|
52
|
51
|
}
|
53
|
52
|
|
54
|
|
-.address {
|
|
53
|
+.address {
|
55
|
54
|
width: 400px;
|
56
|
|
- height: 24px;
|
57
|
|
- text-overflow: ellipsis;
|
58
|
|
- white-space: nowrap;
|
|
55
|
+ height: 24px;
|
59
|
56
|
overflow: hidden;
|
|
57
|
+ white-space: nowrap;
|
|
58
|
+ text-overflow: ellipsis;
|
60
|
59
|
}
|
61
|
60
|
|
62
|
|
-.pitchButton {
|
63
|
|
- border-color: rgba(255,126,72,1);
|
64
|
|
- background-color: rgba(255,126,72,1);
|
65
|
|
- color: rgba(255,255,255,1);
|
|
61
|
+.pitchButton {
|
|
62
|
+ color: rgba(255, 255, 255, 1);
|
|
63
|
+ background-color: rgba(255, 126, 72, 1);
|
|
64
|
+ border-color: rgba(255, 126, 72, 1);
|
66
|
65
|
}
|
67
|
66
|
.noButton {
|
68
|
|
- border-color: rgba(255,126,72,1);
|
69
|
|
- color: rgba(255,126,72,1);
|
|
67
|
+ color: rgba(255, 126, 72, 1);
|
|
68
|
+ border-color: rgba(255, 126, 72, 1);
|
70
|
69
|
}
|
71
|
70
|
.displayS {
|
72
|
71
|
display: none;
|
73
|
72
|
}
|
74
|
73
|
|
75
|
|
-
|
76
|
74
|
// 客户详情样式
|
77
|
|
-.cardBox{
|
|
75
|
+.cardBox {
|
78
|
76
|
display: flex;
|
79
|
|
- .leftBox{
|
80
|
|
- width:90%;
|
81
|
|
- min-width:28.5%;
|
82
|
|
- height:315px;
|
83
|
|
- background:rgba(255,255,255,1);
|
84
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
85
|
|
- border-radius:8px;
|
|
77
|
+ .leftBox {
|
86
|
78
|
display: inline-block;
|
|
79
|
+ width: 90%;
|
|
80
|
+ min-width: 28.5%;
|
|
81
|
+ height: 315px;
|
87
|
82
|
margin-right: 30px;
|
88
|
83
|
padding: 30px;
|
89
|
84
|
overflow: hidden;
|
|
85
|
+ background: rgba(255, 255, 255, 1);
|
|
86
|
+ border-radius: 8px;
|
|
87
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
90
|
88
|
}
|
91
|
|
- .rightBox{
|
92
|
|
- width:865px;
|
93
|
|
- min-width:342px;
|
94
|
|
- height:290px;
|
95
|
|
- background:rgba(255,255,255,1);
|
96
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
97
|
|
- border-radius:8px;
|
|
89
|
+ .rightBox {
|
98
|
90
|
display: inline-block;
|
|
91
|
+ width: 865px;
|
|
92
|
+ min-width: 342px;
|
|
93
|
+ height: 290px;
|
99
|
94
|
margin-right: 30px;
|
100
|
95
|
padding: 30px;
|
101
|
96
|
overflow: hidden;
|
|
97
|
+ background: rgba(255, 255, 255, 1);
|
|
98
|
+ border-radius: 8px;
|
|
99
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
102
|
100
|
}
|
103
|
|
- .rightBox{
|
104
|
|
- width:-webkit-fill-available;
|
105
|
|
- height:315px;
|
106
|
|
- min-width: 70%;
|
107
|
|
- background:rgba(255,255,255,1);
|
108
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
109
|
|
- border-radius:8px;
|
|
101
|
+ .rightBox {
|
|
102
|
+ position: relative;
|
110
|
103
|
display: inline-block;
|
|
104
|
+ width: -webkit-fill-available;
|
|
105
|
+ min-width: 70%;
|
|
106
|
+ height: 315px;
|
111
|
107
|
padding: 30px;
|
112
|
108
|
overflow: hidden;
|
113
|
|
- position: relative;
|
|
109
|
+ background: rgba(255, 255, 255, 1);
|
|
110
|
+ border-radius: 8px;
|
|
111
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
114
|
112
|
}
|
115
|
|
- .rightBoxCentre{
|
116
|
|
- width:865px;
|
117
|
|
- height:315px;
|
118
|
|
- min-width: 60%;
|
119
|
|
- background:rgba(255,255,255,1);
|
120
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
121
|
|
- border-radius:8px;
|
|
113
|
+ .rightBoxCentre {
|
|
114
|
+ position: relative;
|
122
|
115
|
display: inline-block;
|
|
116
|
+ width: 865px;
|
|
117
|
+ min-width: 60%;
|
|
118
|
+ height: 315px;
|
123
|
119
|
padding: 30px;
|
124
|
120
|
overflow: hidden;
|
125
|
|
- position: relative;
|
|
121
|
+ background: rgba(255, 255, 255, 1);
|
|
122
|
+ border-radius: 8px;
|
|
123
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
126
|
124
|
}
|
127
|
|
- .leftBoxCentre{
|
128
|
|
- width:100%;
|
129
|
|
- height:315px;
|
130
|
|
- background:rgba(255,255,255,1);
|
131
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
132
|
|
- border-radius:8px;
|
|
125
|
+ .leftBoxCentre {
|
|
126
|
+ position: relative;
|
133
|
127
|
display: inline-block;
|
|
128
|
+ width: 100%;
|
|
129
|
+ height: 315px;
|
134
|
130
|
padding: 30px;
|
135
|
131
|
overflow: hidden;
|
136
|
|
- position: relative;
|
|
132
|
+ background: rgba(255, 255, 255, 1);
|
|
133
|
+ border-radius: 8px;
|
|
134
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
137
|
135
|
}
|
138
|
|
- .tit{
|
139
|
|
- font-size:0.15rem;
|
140
|
|
- font-weight:600;
|
141
|
|
- color:#222;
|
|
136
|
+ .tit {
|
142
|
137
|
margin: 10px 0 0 0;
|
|
138
|
+ color: #222;
|
|
139
|
+ font-weight: 600;
|
|
140
|
+ font-size: 0.15rem;
|
143
|
141
|
}
|
144
|
|
- .touxiang{
|
|
142
|
+ .touxiang {
|
145
|
143
|
width: 120px;
|
146
|
144
|
width: 120px;
|
147
|
|
- border-radius: 6px;
|
148
|
145
|
margin: 30px 0 20px 0;
|
|
146
|
+ border-radius: 6px;
|
149
|
147
|
}
|
150
|
|
- .infoItem{
|
151
|
|
- color:#666;
|
152
|
|
- font-size: 0.1rem;
|
|
148
|
+ .infoItem {
|
153
|
149
|
margin: 0 0 10px 0;
|
154
|
|
-
|
155
|
|
- }
|
156
|
|
- .rightItem{
|
157
|
|
- color:#666;
|
|
150
|
+ color: #666;
|
158
|
151
|
font-size: 0.1rem;
|
|
152
|
+ }
|
|
153
|
+ .rightItem {
|
159
|
154
|
margin: 0 0 15px 0;
|
|
155
|
+ color: #666;
|
|
156
|
+ font-size: 0.1rem;
|
160
|
157
|
}
|
161
|
|
- .right{
|
|
158
|
+ .right {
|
162
|
159
|
position: absolute;
|
163
|
|
- top:108px;
|
164
|
|
- left:170px;
|
|
160
|
+ top: 108px;
|
|
161
|
+ left: 170px;
|
165
|
162
|
}
|
166
|
|
- .left{
|
|
163
|
+ .left {
|
167
|
164
|
position: absolute;
|
168
|
|
- top:108px;
|
169
|
|
- left:60%;
|
|
165
|
+ top: 108px;
|
|
166
|
+ left: 60%;
|
170
|
167
|
}
|
171
|
|
- .rightInfo{
|
|
168
|
+ .rightInfo {
|
172
|
169
|
position: absolute;
|
173
|
|
- top:108px;
|
174
|
|
- left:80%;
|
|
170
|
+ top: 108px;
|
|
171
|
+ left: 80%;
|
175
|
172
|
}
|
176
|
173
|
|
177
|
|
- .Centered{
|
|
174
|
+ .Centered {
|
178
|
175
|
position: absolute;
|
179
|
|
- top:108px;
|
180
|
|
- left:50%;
|
|
176
|
+ top: 108px;
|
|
177
|
+ left: 50%;
|
181
|
178
|
margin: 0 0 15px 0;
|
182
|
|
- color:#666;
|
|
179
|
+ color: #666;
|
183
|
180
|
font-size: 0.1rem;
|
184
|
181
|
}
|
185
|
182
|
|
186
|
|
- .rightCentered{
|
|
183
|
+ .rightCentered {
|
187
|
184
|
position: absolute;
|
188
|
|
- top:108px;
|
189
|
|
- left:55%;
|
|
185
|
+ top: 108px;
|
|
186
|
+ left: 55%;
|
190
|
187
|
margin: 0 0 15px 0;
|
191
|
|
- color:#666;
|
|
188
|
+ color: #666;
|
192
|
189
|
font-size: 0.1rem;
|
193
|
190
|
}
|
194
|
|
-
|
195
|
191
|
}
|
196
|
|
-.recordBox{
|
197
|
|
- width:100%;
|
198
|
|
- background:rgba(255,255,255,1);
|
199
|
|
- box-shadow:0px 0px 16px 2px rgba(0,0,0,0.12);
|
200
|
|
- border-radius:8px;
|
|
192
|
+.recordBox {
|
|
193
|
+ width: 100%;
|
201
|
194
|
margin-top: 30px;
|
202
|
195
|
padding: 30px;
|
203
|
|
- .tableName{
|
204
|
|
- font-size:24px;
|
205
|
|
- font-weight:600;
|
206
|
|
- color:#222;
|
|
196
|
+ background: rgba(255, 255, 255, 1);
|
|
197
|
+ border-radius: 8px;
|
|
198
|
+ box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.12);
|
|
199
|
+ .tableName {
|
|
200
|
+ color: #222;
|
|
201
|
+ font-weight: 600;
|
|
202
|
+ font-size: 24px;
|
207
|
203
|
}
|
208
|
204
|
}
|
209
|
|
-
|