1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
@charset "UTF-8";
.popup:before, .popup:after,
.popup .popup-title:before, .popup .popup-title:after,
.popup-footer:before, .popup-footer:after {
    display: table;
    content: " ";
}
 
.popup:after,
.popup .popup-title:after,
.popup-footer:after {
    clear: both;
}
.popup {
    visibility: hidden;
    position: fixed;
    top: -770px;
    left: 50%;
    margin-left: -350px;
    z-index: 99999;
    width: 700px;
    height: auto;
    background-color: #FFFFFF;
    /* overflow-x: hidden; */
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.popup.popup-small {
    width: 500px;
    margin-left:-250px;
}
 
.popup .popup-title {
    width: 100%;
    background: url(../image/table_th_bg.gif) repeat-x;
}
.popup .popup-title span{
    display: block;
    float:left;
    margin-left: 10px;
    padding: 6px;
    font-weight: bold;
}
.popup .popup-title .close{
    display: block;
    padding: 6px;
    float: right;
    font-size: 16px;
    color: #050505;
    text-decoration: none;
 
}
.popup .popup-title .close:hover{
    color: #FFFFFF;
    background-color: #F88686;
}
 
.popup .popup-content {
    max-height: 380px;
    overflow:hidden;
    overflow-y: auto;
    padding: 10px 8px;
    background-color: #eee;
}
.popup .popup-list span {
    font-weight: bold;
}
.popup .popup-list select {
    width: 80%;
    height: 1.8em;
    border: 1px solid #bbb;
}
.popup .popup-content .popup-tbl {
    margin-top: 8px;
}
.popup .popup-content .popup-tbl table{
    width: 100%;
    border-collapse: collapse;
}
.popup .popup-content .popup-tbl table th {
    text-align: left;
    padding: 4px 0px;
}
.popup .popup-content .popup-tbl table td {
    text-align: left;
    padding: 1px;
}
.popup .popup-content .popup-tbl table td>input[type="text"],
.popup .popup-content .popup-tbl table td>select {
    font-size: 12px;
    width: 90%;
    height: 1.8em;
    border: 1px solid #bbb;
}
.popup .popup-content .popup-tbl table th input[type="checkbox"] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 6px;
}
.popup .popup-content .popup-tbl table td input[readonly="readonly"] {
    background-color: #ddd;
}
 
.popup-footer{
    padding: 10px 0;
    text-align: right;
    background-color: #eee;
}
.popup-footer input[type="button"] {
    /*初始化按钮*/
    font-size: 12px;
    text-decoration: none!important;
    font-family: Helvetica, Arial, sans serif;
    padding: 6px 14px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: inset 0px 0px 2px #fff;
    -o-box-shadow: inset 0px 0px 2px #fff;
    -webkit-box-shadow: inset 0px 0px 2px #fff;
    -moz-box-shadow: inset 0px 0px 2px #fff;
    /*定义颜色和样式*/
    color: #41788c;
    border: 1px solid #6fb1c7;
    background-image: -moz-linear-gradient(#aae5f7, #73d0f1);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73d0f1), to(#aae5f7));
    background-image: -webkit-linear-gradient(#aae5f7, #73d0f1);
    background-image: -o-linear-gradient(#aae5f7, #73d0f1);
    text-shadow: 1px 1px 1px #bfeafb;
    background-color: #73d0f1;
    /*按钮的上右下左的距离*/
    margin-right: 10px;
}
.popup-footer input[type="button"]:hover {
    border: 1px solid #4690ad;
    background-image: -moz-linear-gradient(#73d0f1, #aae5f7);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#aae5f7), to(#73d0f1));
    background-image: -webkit-linear-gradient(#73d0f1, #aae5f7);
    background-image: -o-linear-gradient(#73d0f1, #aae5f7);
    background-color: #EAF5F8;
    color: #56A2BD;
    cursor: pointer;
}
 
.popup-footer input.whyc-btn-disabled {
    border: 1px solid #4690ad;
    background-image: -moz-linear-gradient(#73d0f1, #aae5f7);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#aae5f7), to(#73d0f1));
    background-image: -webkit-linear-gradient(#73d0f1, #aae5f7);
    background-image: -o-linear-gradient(#73d0f1, #aae5f7);
    background-color: #EAF5F8;
    color: #56A2BD;
}
.popup-footer input.whyc-btn-disabled:hover {
    cursor: not-allowed !important;
}
.popup-mask {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 99997;
    width: 100%;
    height: 0;
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity = 50);
}
 
.popup-content-msg {
    padding: 1em 0;
    background-color: #FFFFFF;
    text-align: center;
}
 
.confirm{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -200px;
    z-index: 999999;
    width: 400px;
    background-color: #eee;
}
.confirm .confirm-header:before , .confirm .confirm-header:after,
.confirm .confirm-footer:before, .confirm .confirm-footer:after{
    display: table;
    content: " ";
}
.confirm .confirm-header:after,
.confirm .confirm-footer:after{
    clear: both;
}
.confirm .confirm-header {
    background: url(../image/table_th_bg.gif) repeat-x;    
}
.confirm .confirm-header span {
    display: block;
    float:left;
    margin-left: 10px;
    padding: 6px;
    font-weight: bold;
}
.confirm .confirm-header .close {
    display: block;
    padding: 6px;
    float: right;
    font-size: 16px;
    color: #050505;
    text-decoration: none;    
}
.confirm .confirm-header .close:hover{
    color: #FFFFFF;
    background-color: #F88686;
}
.confirm .confirm-content {
    background-color: #fff;
    padding: 15px;
}
.confirm .confirm-content table{
    width: 100%;
    border-collapse:collapse;
}
.confirm .confirm-content table th {
    background-color: #ddd;
}
.confirm .confirm-content table th,.confirm .confirm-content table td{
    border: 1px solid #ccc;
    padding: 6px 0;
    text-align: center;
}
 
.confirm .confirm-footer {
    padding: 15px 0;
}
.confirm .confirm-footer .pos-left {
    float:left;
    width: 50%;
    text-align: center;
}
.confirm .confirm-footer input[type="button"]{
    /*初始化按钮*/
    font-size: 12px;
    text-decoration: none!important;
    font-family: Helvetica, Arial, sans serif;
    padding: 6px 14px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: inset 0px 0px 2px #fff;
    -o-box-shadow: inset 0px 0px 2px #fff;
    -webkit-box-shadow: inset 0px 0px 2px #fff;
    -moz-box-shadow: inset 0px 0px 2px #fff;
    /*定义颜色和样式*/
    color: #41788c;
    border: 1px solid #6fb1c7;
    background-image: -moz-linear-gradient(#aae5f7, #73d0f1);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73d0f1), to(#aae5f7));
    background-image: -webkit-linear-gradient(#aae5f7, #73d0f1);
    background-image: -o-linear-gradient(#aae5f7, #73d0f1);
    text-shadow: 1px 1px 1px #bfeafb;
    background-color: #73d0f1;
}
.confirm .confirm-footer input[type="button"]:hover{
    border: 1px solid #4690ad;
    background-image: -moz-linear-gradient(#73d0f1, #aae5f7);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#aae5f7), to(#73d0f1));
    background-image: -webkit-linear-gradient(#73d0f1, #aae5f7);
    background-image: -o-linear-gradient(#73d0f1, #aae5f7);
    background-color: #EAF5F8;
    color: #56A2BD;
}
.confirm-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999997;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity = 50);
}
 
.whyc-ip-container {
    display: inline-block;
    white-space: nowrap;
    border: 1px solid #c0c0c0;
    padding-left: .8em;
    padding-right: .8em;
    background-color: #FFFFFF;
    font-size: 16px;
}
.whyc-ip-container input, .whyc-ip-container span {
    display: inline;
}
.whyc-ip-container input {
    border: none;
    height: 1.5em;
    width: 2em;
    vertical-align: middle;
}
.whyc-ip-container span {
    font-size: 20px;
}
 
.w30em {
    width: 30em;
}
.pos-w30em {
    margin-left: -15em;
}
.w35em {
    width: 35em;
}
.pos-w35em {
    margin-left: -17em;
}
.tips {
    font-weight: normal;
}