member.css
31.1 KB
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
.user-center-title{
font-size: 20px;
background: #f2f2f2;
margin: 20px 0;
padding: 20px;
color: #333;
}
.leftbox {
border: 2px solid #c4c4c4;
float: left;
padding-top: 0;
text-align: center;
width: 196px;
margin-bottom: 70px;
}
.leftbox h5 {
font-size: 18px;
line-height: 30px;
}
.leftbox h5.btw {
color: #d0111a;
}
.leftbox a {
font-size: 16px;
}
.leftbox p{
background: transparent url("../images/ration/head.jpg") no-repeat center center;
height:50px;
font-size: 18px;
font-weight: bold;
text-align: center;
line-height: 2.5em;
color:#E61A42;
}
.leftbox ul li {
line-height:3.5em;
height:50px;
}
.leftbox ul ul li {
text-indent: 4em;
/*margin-left:40px; */
}
.centerbox {
width: 500px;
float: left;
text-align: center;
font-size: 18px;
}
.centerbox .curve{
height: 300px;
background-color: antiquewhite;
margin-top: 15px;
border-radius: 5px;
}
.rightbox0 {
width: 760px;
float: left;
margin-left: 40px;
margin-top: 110px;
}
.rightbox0 .crossline {
width: 100%;
}
.zhuanchu-centerbox {
border-radius: 5px;
text-align: center;
font-size: 18px;
background-color: antiquewhite;
padding-top: 10px;
padding-bottom: 20px;
}
.zhuanchu-centerbox p {
padding-top: 20px;
line-height: 4em;
}
.zhuanchu-centerbox .title {}
.zhuanchu-centerbox .money {
margin-left: 60px;
color: #d0111a;
font-size: 48px;
vertical-align: bottom;
}
.rightbox {
width: 200px;
height: 300px;
float: left;
text-align: center;
font-size: 18px;
margin-left: 10px;
padding-top: 80px;
}
.rightbox h4 {
font-size: 30px;
line-height: 70px;
display: block;
height: 70px;
}
.moneynumber {
color: #d0111a;
font-size: 45px;
line-height: 80px;
}
.moneyunit {
color: #1a1a1a;
font-size: 18px;
}
.monenypre {
font-size: 16px;
padding-top: 25px;
}
.moneynumberpre {
color: #d0111a;
font-size: 30px;
line-height: 60px;
}
.moneyunitpre {
color: #1a1a1a;
font-size: 16px;
}
.huiyuanbt {
text-align: center;
line-height: 46px;
margin: 0 auto;
display: inline-block;
background: #bf1414;
width: 169px;
height: 51px;
border-radius: 5px;
}
.huiyuanbt.marginright{
margin-right:60px;
}
.viewhistory {
margin: 50px 0 0 60px;
color: #fff;
line-height: 46px;
}
.newmember {
}
.newmemberbox {
text-align: center;
line-height: 100px;
font-size: 18px;
}
/*闂備胶鎳撻悺銊╁垂閻熸壋鏋旈柟杈剧畱缁犮儲淇婇婧炬嫛闁告熬鎷烽梻浣告啞鐢銆冩径鎰ラ柨鐕傛嫹*/
.etlist {
text-align: center;
margin-top: 0px;
margin-bottom: 70px;
}
.etlistbg {
width: 700px;
}
.etlistbg tr td {
border-top: 1px #ccc solid;
}
.redfont {
color: #d0111a;
}
.etlistbg tr td.noborder {
border: 0px !important;
}
.etlistbg tr:last-child td {
border-bottom: 1px #ccc solid;
}
.etlistbg tr:last-child td b{
font-weight: normal;
}
.entrust {
border-left: 1px #cccccc solid;
width: 100%;
font-size:13px;
}
.entrust tr td {
border-top: 1px #ccc solid;
border-right: 1px #ccc solid;
}
.entrust tr:last-child td {
border-bottom: 1px #ccc solid;
}
.entrust #head{
height: 52px;
bgcolor: #efefef;
color:#000000;
font-weight: bold;
}
.etlistbg #head{
height: 52px;
bgcolor: #efefef;
background: transparent url("../images/ration/tableHead.jpg") repeat center center;
color:#f00;
}
.tbody tr:last-child td {
border-bottom: 1px #ccc solid;
}
.viewbtns{
width: 780px;
}
table.entrusttable{
width: 100%;
border:1px 0px;
}
.market{
width:699px;
background: transparent url("../images/ration/grayBlock.jpg") no-repeat center center;
color:#F00;
margin-top:5px;
}
.viewbtns li {
float: right;
padding: 10px 20px;
}
.viewbtns .selected,
td.stateblue,
.viewbtns li>a:hover {
color: #00a0e8
}
td.stategray{
color: #BFC0C0
}
td.statered{
color: #F00
}
/*闂佽崵濮嶉崘顭戜純闂侀潻绲块崑鎾愁焽椤忓牜鏁嗛柨鐔剁矙瀹曪綁宕卞Ο璇差潯濡炪倖甯幏鐑芥煕閵堝繑瀚�*/
.newmemberbox {
text-align: center;
line-height: 100px;
font-size: 18px;
}
.applyoutbtn {
display: block;
background-color: #d0111a;
width: 169px;
height: 51px;
border-radius: 3px;
line-height: 51px;
text-align: center;
margin: 0 auto;
}
.applyoutdiv {
padding-left: 100px;
margin-top: 50px;
}
.righttopbox {
background: transparent url("../images/banner/tuijianhaoyou.jpg") no-repeat center center;
height: 350px;
}
.money-out {
line-height: 90px;
}
.money-out {
display: block;
}
.moneyouttit .zjzc {
font-size: 30px;
margin-left: 220px;
}
.moneyabout {
font-size: 18px;
line-height: 36px;
}
.moneyabout .bankcard{
height: 45px;
line-height: 36px;
}
.moneyabout p{
margin-left: 150px;
}
.moneyabout input {
width: 335px;
height: 40px;
border: 1px #d0111a solid;
margin-bottom: 20px;
font-size: 18px;
padding: 0 10px;
margin-left:60px;
}
.moneyabout span{
margin-left: 68px;
}
.moneyabout .sqzc {
background: #d0111a;
width: 169px;
height: 51px;
text-align: center;
border-radius: 3px;
line-height: 51px;
margin: 50px 0 0 98px;
}
.moneymanagetitle{
margin-left: 30px;
}
/*.membertitle{
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 10px solid #d0111a;
}*/
/*闂備胶鎳撻悘姘垛�﹂崶顒夋晣闁归棿鐒﹂崑銊╂倵閸︻厼顎岄柛銈囧仱閺屾稑螖鐎n偄顏�*/
.rightbox1{
width: 710px;
margin-left: 40px;
margin-top: 80px;
float: left;
}
.applyform {
text-align: center;
border-left: 1px #cccccc solid;
border-bottom: 1px #cccccc solid;
}
.applyform tr td {
border-top: 1px #ccc solid;
border-right: 1px #ccc solid;
}
.rightbox1 h2{
text-align: center;
}
.rightbox1 h5{
margin-top: -10px;
text-align: center;
color: #dadada;
}
.rightbox1 .info{
font-size: 15px;
line-height: 30px;
margin-top:10px;
}
.rightbox1 .infobottom{
margin-bottom:10px;
}
.ordernumber{
display: block;
float: right;
margin-top: -40px;
}
.comment{
}
.underline{
width: 150px;
display: inline-block;
border-bottom: 1px solid;
text-indent: 1em;
}
.info .firstspan{
display: inline-block;
width: 250px;
}
.improtanttipbox{
margin-top: 20px;
}
.rightbox2{
width: 760px;
float: left;
}
/*鎴戠殑璐﹀彿*/
.zhuanchu-centerbox2 {
background-color: #f7f7f7;
margin-top: 15px;
}
.account-pay{margin:30px;}
.account-pay .ap-left{width:70%;float:left;}
.account-pay .ap-left p{ text-align: left; padding: 55px 0px; font-size: 18px;}
.account-pay .ap-left p span{ color: #d1131d; font-weight: 600; font-size: 20px;}
.account-pay .ap-right{width:30%;float:right;}
.account-pay .ap-right a{display: block; background: #d1131d; color: #fff; padding: 2px 5px; border-radius: 5px;width: 140px; margin: 30px auto 0;}
.blue-btn{background: #1E90FF; color: #fff; padding: 2px 15px; border-radius: 5px;width: 60px; margin:0px 5px;}
.grey-btn{background: #f0eded; color: #8A8A8A; padding: 2px 15px; border-radius: 5px;width: 60px; margin:0px 5px;}
.account-bank{margin: 0; border-top: 3px dashed #ccc;}
.account-bank .ap-left{width:31%;border-right: 3px dashed #ccc; padding: 60px 0;}
.account-bank .ap-left p{margin锛�0;padding:20px; padding: 20px 30px;}
.account-bank .ap-right {width:30%;float:right; padding: 20px;}
/*闂備胶鎳撻悺銊╁垂閻熸壋鏋旈柟瀵稿У鐏忓酣鏌涢弴銊ョ仩婵炲拑鎷�*/
.fastpaybtn{ width:169px; height:51px; background:#d0111a; border-radius:5px; float: left; margin:36px 146px 0 0; line-height:51px; text-align:center;}
.outbtn{ width:169px; height:51px; background:#d0111a; border-radius:5px; float: left; margin-top:36px;line-height:51px; text-align:center;}
.zhuanru{ margin:30px 0 0 164px; font-size:18px;}
.zhuanru p input{ width:333px; height:49px; border:1px #d0111a solid; }
.zhuanru .cungf{ padding:20px 0 20px 0;}
/*闂佸搫顦遍崕鎰板礈濞嗘挸鍚规い鎾跺Х绾惧ジ鏌熼幆褜鍤熷ù婊愭嫹*/
.outresult{ }
ul.outresult li{ line-height:40px;}
.resulttit{ font-size:30px;}
/*闂佽浜介崝宀�绮诲鍡愪簻闁汇垹鎲″銊╂⒑閸撗冧壕閻㈩垽鎷�*/
.rightbox0 .title {
text-align: center;
margin-top: -30px;
}
.rightbox0 .link {
float: right;
margin-top: -40px;
}
.wangyingdiv {
font-size: 18px;
margin-bottom: 30px;
margin-top: 40px;
/* text-align: center; */
margin-left: 150px;
}
.wangyingleftdiv {
margin-left: 0px;
}
.wangyingleftdiv span{
display: inline-block;
width:120px;
text-align: right;
float: left;
line-height:35px;
font-size: 18px;
}
.wangyingdiv input {
margin-left: 50px;
height: 35px;
border: 1px red solid;
padding-left: 6px;
padding-right: 6px;
font-size: 18px;
width: 260px;
}
.subhuifupay {
color: #7d7d7d;
font-size: 12px;
}
.huifupay {
margin-left: 70px;
}
.bankgroup{
margin-top: 0px;
}
.bankgroup img{
border: none;
margin-bottom: -10px;
margin-left: 3px;
height: 30px;
width: 180px;
}
.bankgroup .bankrow{
margin-top: 20px;
}
.bankgroup label{
width: 214px;
height: 45px;
display: inline-block;
}
.bankgroup span{
margin-top: 10px;
margin-bottom: 10px;
display: inline-block;
}
.bankgroup input[type="radio"]{
height: 15px;
width: 15px;
}
.bankgroup label,.bankgroup input[type="radio"]{
cursor:pointer;
}
a.wangyingbtn{
width: 211px;
height: 41px;
display: block;
background-color: #d1131d;
text-align: center;
line-height: 41px;
border-radius: 5px;
margin-top: 80px;
}
a.wangyingbtn:hover{
cursor:pointer;
background-color:rgb(231,36,38);
}
/*鍏呭�奸〉闈�*/
.cyber-bankin-tab{margin-top:20px;}
.cyber-bankin-tab{margin-top:20px;}
.quick-pay {background: #f2f2f2; margin: 0px 0; padding: 50px 0;}
.quick-pay p {text-align: left; height: 45px; font-size: 16px;}
.quick-pay label {display: inline-block; width: 37%;text-align: right; float: left; margin-right: 2%;}
.quick-pay input {padding-left: 2px;height: 25px;margin-right: 20px; border: 1px solid #ddd;}
.quick-pay button{ width: 100px;cursor: pointer; background: #fff; border: 1px solid #ddd; height: 25px; padding: 0 10px; border-radius: 3px;color: #444;}
.quick-pay .submit{ margin: 20px 0; cursor: pointer; background: #d1131d; color: #fff;display: inline-block;border-radius: 5px; padding: 5px 0px; width: 170px;}
.cyberBankin-popUp .easyDialog_content .easyDialog_text{text-align: center; padding: 50px 0 20px; font-size: 16px;}
.cyberBankin-popUp .btn_highlight{ margin: 0 90px;}
/*鎻愮幇椤甸潰*/
.in-cash{margin: 20px 0;}
.in-cash .submit{ text-align:center; margin: 20px 295px;}
.rightbox0 .title0 {
text-align: center;
}
.rightbox0 .linkleft {
float: left;
margin-top: -40px;
}
.kaisudiv {
font-size: 18px;
margin-bottom: 30px;
margin-top: 20px;
text-align: center;
}
.kaisudiv input {
margin-left: 50px;
height: 35px;
border: 1px red solid;
padding-left: 6px;
padding-right: 6px;
font-size: 18px;
width: 260px;
}
.kaisudiv .bankcodetxt {
margin-left: 50px;
padding-left: 6px;
padding-right: 6px;
font-size: 18px;
width: 260px;
display: inline-block;
text-align: left;
}
a.kuaisubtn {
width: 211px;
height: 41px;
display: block;
background-color: #d1131d;
text-align: center;
line-height: 41px;
border-radius: 5px;
margin: 0 auto;
margin-top: 80px;
}
.kaisudiv .bankcodetxt {
margin-left: 50px;
padding-left: 6px;
padding-right: 6px;
font-size: 18px;
width: 260px;
display: inline-block;
text-align: left;
}
a.kuaisubtn:hover {
cursor: pointer;
background-color: rgb(231, 36, 38);
}
.searchform{
text-align:left;
margin-bottom: 12px;
}
.searchform input{
border:1px solid #ccc;
width: 90px;
padding-left: 10px;
padding-right: 10px;
}
.searchform select{
width: 98px;
padding-left: 4px;
width: 125px;
padding-left: 4px;
}
.searchform input,.searchform select{
height: 25px;
margin-right: 10px;
}
.returnmymoney,.chankanliushui{
width: 169px;
height: 51px;
background: #d0111a;
border-radius: 5px;
float: left;
margin-top: 36px;
line-height: 51px;
text-align: center;
}
.chankanliushui{
margin-left: 65px;
}
.curve.c3 svg{
overflow: visible !important;
margin-left: -18px;
}
.zhuanchu-centerbox3{
font-size: 18px;
background-color: antiquewhite;
margin-top: 110px;
padding-top: 10px;
padding-bottom: 20px;
padding-left:140px;
}
.zhuanchu-centerbox3 p{
line-height: 3em;
}
.zhuanchu-centerbox3 .title{
width: 100px;
display: inline-block;
}
.zhuanchu-centerbox3 .content{
font-size: 18px;
height: 30px;
padding: 2px 10px;
}
.zhuanchu-centerbox3 span.content{
padding: 10px 0;
}
/*----xyf-kiting.jsp----*/
.xyfInfo {
font-size: 12px;
color: #d81e31;
}
.xyfImportantNum {
color: #d81e31;
}
#xyfKitingNoteList {
display: block;
width: 760px;
height: 220px;
background-color: #f2f2f2;
position: relative;
top: -20px;
border-top: 1px dashed #ffffff;
}
#xyfKitingNoteList ul {
position: absolute;
left: 120px;
}
#xyfKitingNoteList h3 {
font-size: 15px;
font-weight: bold;
color: #d81e31;
}
#xyfKitingNoteList li {
font-size: 12px;
color: #808080;
position: relative;
top: -15px;
left: 8px;
}
#xyfKitingNoteList li span {
font-size: 28px;
position: relative;
top: 5px;
left: -5px;
}
.xyfKitingList {
width: 100%;
margin-bottom: 0px;
}
.xyfKitingList th{background: #f2f2f2;color:#d1131d;}
.xyfKitingList tr{height: 40px;line-height: 40px; cursor: pointer; }
.xyfTableTr td {
border-bottom: 1px solid #dddddd;
text-align: center;
height:50px;
}
/*----xyf-charge.jsp----*/
#xyfFlow {
width: 760px;
height: 60px;
background-color: #f2f2f2;
}
#xyfFlow dl span {
float: left;
padding: 20px 15px;
}
#xyfFlow dl span dt {
float: left;
color: #ffffff;
font-size: 13px;
background-color: #000000;
display: block;
width: 20px;
height: 20px;
border-radius: 10px;
text-align: center;
line-height: 20px;
margin-right: 5px;
}
#xyfFlow dl span dd {
float: left;
line-height: 18px;
}
.xyfChargeInput {
width: 220px;
}
#btnChangeCard {
cursor: pointer;
}
#xyfBtnChangeCard {
background-color: #ffffff;
}
.xyfForPosition {
position: relative;
}
#xyfCardList {
width: 320px;
height: 175px;
border: 1px solid #dddddd;
background-color: #ffffff;
position: absolute;
top: 30px;
left: 295px;
Z-index: 9999;
display: none;
}
#xyfCardList ul {
height: 175px;
overflow: scroll;
}
#xyfCardList li {
padding: 5px 10px;
text-align: left;
}
#xyfNowSelected {
background-color: #fdf4f5;
}
#xyfNowSelected span {
color: #d81e31;
margin-left: 10px;
}
#xyfBtnMakeSure {
color: #0062ac;
background-color: #ffffff;
display: block;
width: 320px;
height: 40px;
line-height: 36px;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
position: absolute;
left: -1px;
}
#xyfChargeInfo {
position: relative;
top: -10px;
left: 35px;
}
.xyfSubmit{
margin: 20px 0;
cursor: pointer;
background: #d1131d;
color: #fff;
display: inline-block;
border-radius: 5px;
padding: 5px 0px;
width: 220px;
}
.xyfButton {
width: 220px;
}
#xyfChargeNoteList {
display: block;
width: 760px;
height: 190px;
background-color: #f2f2f2;
position: relative;
top: -20px;
border-top: 1px dashed #ffffff;
}
#xyfChargeNoteList ul {
position: absolute;
left: 120px;
text-align: left;
}
#xyfChargeNoteList h3 {
font-size: 15px;
font-weight: bold;
color: #d81e31;
}
#xyfChargeNoteList li {
font-size: 12px;
color: #808080;
position: relative;
top: -15px;
left: 8px;
}
#xyfChargeNoteList li span {
font-size: 28px;
position: relative;
top: 5px;
left: -5px;
}
.xyfRechargeList {
width: 100%;
}
.xyfRechargeList th{background: #f2f2f2;color:#d1131d;}
.xyfRechargeList tr{height: 40px;line-height: 40px; cursor: pointer; }
#xyfChargeList td {
background-color: #ffffff;
border-bottom: 1px solid #dddddd;
}
.xyfActionStyle {
color: #0062ac
}
#changePhonenum {
/*display: block;*/
width: 600px;
}
#changePhonenum h4 {
color:red;
background-color:#f2f2f2;
text-align:center;
padding:10px 0;
}
#changePhonenum input {
width: 240px;
}
#bankCode {
width: 240px;
}
#province_code {
width: 115px;
margin-right:10px;
}
#city_code {
width: 115px;
}
#xyfPhoneNum {
width:230px;
text-align:left;
}
#validCode {
width:160px;
}
#btnValidCode {
width: 200px;
background-color: #ffffff;
border: 1px solid #dddddd;
}
.easyDialog_text span {
/*display: block;*/
margin-left: 5px;
text-align: center;
}
#xyfBankInfoWindow {
/*display: block;*/
width: 600px;
height: auto;
/*position: absolute;*/
}
#xyfBankInfoWindow span {
font-size: 16px;
display: block;
text-align: center;
color: #d81e31;
margin: 0 0 20px 0;
}
#xyfBankInfoWindow .xyfEasyDialog_text p {
font-weight: 600;
padding: 30px 0px 20px 0px;
text-align: center;
font-size: 16px;
color: #d81e31;
}
.xyfEasyDialog_text a {
position: absolute;
top: 30px;
right: 30px;
font-size: 21px;
color: #dddddd;
}
#xyfBankInfoWindow dl {
width: 0 auto;
background-color: #F2F2F2;
padding: 30px 0;
}
#xyfBankInfoWindow dl p {
/*display:block;
line-height: 40px;*/
text-align: center;
}
#xyfBankInfoWindow dl dt {
text-align: right;
display: inline-block;
font-weight: 600;
width: 30%;
height: 36px;
margin-right: 30px;
/*float: left;*/
}
#xyfBankInfoWindow dl dd {
/*float: right;*/
display: inline-block;
width: 50%;
height: 36px;
margin-left: 0px;
}
#xyfBankInfoWindow dl dd a {
color: #0062ac;
margin-left: 20px;
}
#xyfDialogFooter {
position: relative;
display: block;
height: 89px;
/*border-top: 1px dashed #f2f2f2;*/
background-color: #ffffff;
}
#xyfDialogFooter p {
display: block;
text-align: center;
line-height: 0px;
margin: 20px auto;
font-size: 12px;
color: #d81e31;
}
#xyfDialogFooter a {
color: #0062ac;
text-align: center;
display: block;
width: 100px;
margin: 20px auto;
font-size: 16px;
}
#xyfBindingInfo {
display: block;
width: auto;
height: 110px;
background-color: #f2f2f2;
margin-bottom: 10px;
}
#xyfBindingInfo dl {
float: left;
margin: 32px 0 0px 40px;
}
#xyfBindingInfo dl dt {
font-size: 16px;
font-weight: 600;
}
#xyfBindingInfo dl dd {
font-size: 11px;
color: #d81e31;
padding-topg 4px;
}
#xyfBindingInfo a {
float: right;
display: block;
width: 120px;
height: 30px;
background-color: #d81e31;
color: #ffffff;
line-height: 30px;
text-align: center;
text-decoration: none;
font-size: 13px;
font-weight: 600;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
margin: 40px 40px 0 0;
}
#xyfBankCardList h3 {
font-size: 16px;
/*padding: 10px 0 20px 0;*/
}
#xyfBankCardList ul {
width: auto;
height: auto;
background-color: #f2f2f2;
padding: 20px 30px;
overflow: hidden;
}
.xyfBankCardStyle {
display: block;
width: 280px;
height: 170px;
background-color: #ffffff;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border: 1px solid #d6d6d6;
float: left;
margin: 20px 30px;
}
.xyfBankCardStyle h4 {
font-size: 14px;
font-weight: 600;
padding: 0 0 10px 0;
margin: 20px 20px 0 20px;
border-bottom: 1px solid #f2f2f2;
}
.xyfBankCardStyle h4 a {
font-size: 12px;
font-weight: 400;
color: #0062ac;
text-decoration: none;
float: right;
/*padding: 5px 10px;
margin-bottom: 10px;
display: block;*/
/*width: 30px;
height: 20px;*/
}
.xyfBankCardStyle p {
font-size: 20px;
font-weight: 600;
margin: 30px 0 30px 20px;
}
.xyfBankCardStyle span {
font-size: 12px;
margin: 0 0 0 20px;
}
.xyfAddBankCardStyle {
display: block;
width: 280px;
height: 170px;
background-color: #ffffff;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border: 1px solid #d6d6d6;
float: left;
margin: 20px 30px;
/*---------------------*/
font-style: 18px;
font-weight: 600;
color: #0062ac;
line-height: 170px;
text-align: center;
cursor: pointer;
}
#pageToolbar {
}
.xyfClose_btn {
display: block;
position: absolute;
right: 10px;
width: 50px;
}
/*韫囨顔囩�靛棛鐖�*/
.txtspan{
width: 200px;
display: inline-block;
text-align: right;
margin-bottom: 15px;
padding-right: 15px;
}
.sendvalibtn{
padding:5px;
}
.sendvalitext{
width: 95px !important;
}
/*涔板崠璁板綍*/
.sales-record {margin-top:10px;}
.sales-record .tab-slide{padding: 0 2px;}
.sales-record .tab-slide a{ width: 74px; padding: 10px 25px;}
.sales-record table{width:760px;}
.sales-record table th{background: #f2f2f2;color:#d1131d ; padding: 5px 0px;}
.sales-record table tr{height:30px;}
.sales-record table td{border-bottom: 1px solid #ddd;}
.scroll-x{width:760px;overflow-x: auto;min-height: 332px;}
.scroll-x table{width:1000px;}
.show-way{ text-align:left; height: 50px;line-height:50px;}
.deal-today table{width:760px;margin:40px 0;}
.input-box{float: left;}
.input-box p{display: inline-block;padding: 15px 0 15px 0; font-size: 15px; }
.input-box p input{ padding-left: 2px;border: 1px solid #ddd;width:100px;margin-left: 4px; height: 21px;}
.input-box a{cursor: pointer;text-align:center;display: inline-block; background: #d1131d;width: 75px; margin: 0 auto; color: #fff;border-radius: 5px}
#table{ position: relative;}
#table th:last-child, #table tr > td:last-child{position: fixed;z-index: 2; }
#table tr > td:last-child{ background: #fff; height: 29px;color:#00a0e9;cursor: pointer;}
#table th:last-child{ height: 29px;}
/*鏂板厖鍊奸〉闈�*/
.recharge .recharge-prompt{background: #f2f2f2; padding:10px 20px;text-align: left;}
.recharge .recharge-prompt span{display: inline-block; line-height: 40px;font-size: 15px;text-indent: 2em;color: #d1131d;font-weight: 600;}
.recharge .user-msg {margin:0px 0 10px;}
.recharge .user-msg th{ border: 1px solid #f2f2f2; background: #f2f2f2;}
.recharge .user-msg tr{ height: 30px;}
.recharge .user-msg td{ font-weight: 500; border-bottom: 2px solid #bfc0c0; }
.recharge .recharge-prompt .user-msg span{font-weight: 600;height: 40px;}
.recharge .tip-title{text-align: left;font-size: 18px;line-height: 40px;height: 40px; border-bottom: 2px dashed #bfc0c0; color: #d1131d;}
.recharge .tip{text-align: left; line-height: 47px;}
.recharge .box-item .tip-list{text-align: left; background: #f2f2f2; padding: 20px 40px; line-height: 28px;color: #d1131d;}
.recharge .box-item .tip-list span{ color: #d1131d;}
.recharge .box-item{margin-top:30px;}
.recharge .box-item a{display: inline-block; background: #d1131d;color: #fff; padding: 2px 20px; border-radius: 5px; margin: 40px auto 0;}
.recharge .box-item .form{background: #f2f2f2; margin: 10px 0px; padding: 10px 30px;}
.recharge .input-box{width:90%;}
.recharge .input-box p{ width: 50%;float: left;padding: 15px 0; text-align: left;}
.recharge .input-box label{display: inline-block;width: 100px; text-align: right;}
.recharge .input-box input{ width: 150px;margin: 0 10px;}
.recharge .recharge-list{ width: 100%; margin: 20px 0;}
.recharge .recharge-list th{background: #f2f2f2;color:#d1131d}
.recharge .recharge-list tr{ height: 40px;line-height: 40px; cursor: pointer;}
.recharge .recharge-list tr:nth-child(even){ background: #f2f2f2;}
.recharge .recharge-list a{background: none;color: #000; margin: 0; padding: 0 5px;}
.recharge .recharge-list a:hover{color: #d1131d;}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button { -webkit-appearance: none;}
input[type="number"]{-moz-appearance: textfield;}
/*鎻愯揣纭椤甸潰*/
.red-btn{display: inline-block;background: #d1131d; color: #fff; padding: 2px 5px; border-radius: 5px;}
.pick{padding-top:10px;}
.pick .tab-slide{ }
.pick .content{width:100%;}
.pick .content h4{text-align: left;font-size:16px; line-height: 40px; }
.self .content-msg{background: #f2f2f2;text-align: left; margin: 0px 0 20px 0;}
.self .input-box { padding: 30px 0 20px 5%; border-bottom: 3px dashed #fff;float:none;}
.self .input-box i{color: #d1131d;padding-left:20px}
.self .input-box .blue-font{ text-align: left; display: block;color: #3580bf;background: #f2f2f2;margin: 20px 15px;width:300px;}
.self .input-box input[type="radio"]{width:15px;vertical-align:middle;margin: 0 15px;}
.self .input-box input{width:180px;padding:0 4px;}
.self .input-box label{padding-right:50px;}
.self .input-box small{padding-left: 158px;font-size: 14px;color: #d1131d;margin: 10px 0 15px 0; display: inline-block;}
.self .input-box span{ display: inline-block; width: 120px; text-align: right; padding-right: 30px;}
.self .input-box .otherPick p{ padding: 10px 45px 5px 0;}
.self .content-msg .tip{ padding:30px 0 30px 8%;color:#808080; line-height: 30px;}
.self .pick-msg table{width:100%;padding:10px 0;}
.self .pick-msg table th{background: #f2f2f2;color: #d1131d;height:30px;font-weight: 500;}
.self .pick-msg table td{height:30px;border-bottom:1px solid #ddd;}
.self .pick-person{ width: 100%;text-align: left; background: #f2f2f2; line-height: 30px;padding: 15px 0 ;}
.self .pick-person a{float: right; margin-right: 20px;width: 100px;text-align: center;padding: 0;}
.self .pick-person span{display: inline-block; padding: 0 0 0 20px;}
.self .pick-person .bold{font-weight:bold}
.zhaoonline .content-msg .input-box{ padding: 30px 0 20px 15%;}
.zhaoonline .content-msg .input-box input{padding:0 4px;}
.zhaoonline .content-msg .tip{padding: 30px 20px 20px 5%;}
.express .content .aBtn > h4{width:50%;float:left;}
.express .content .add-address{float:right;margin: 10px 0 0;}
.express .content .address-box{background: #f2f2f2;margin:10px 0;padding:20px 10px 20px 15px ;text-align:left}
.express .content .address-box input{ vertical-align: middle;margin: 10px 15px;width: 15px;}
.express .content .address-box li{height:30px;line-height: 30px;padding:0 10px 0 5px;}
.express .content .phone-num{float:right;}
.express .content .address{vertical-align: middle;overflow:hidden;text-overflow:ellipsis; -o-text-overflow:ellipsis;white-space:nowrap;width:550px;width: 500px;display:inline-block;}
.express .content li:hover{color: #d1131d;}
.express .content .address-box .checked{background: #fff;color: #d1131d;}
.express .content table{padding:10px 0;}
.express .input-box{background: #f2f2f2;border:0;padding:30px 0; }
.express .input-box p{float:left}
.express .input-box small{padding-left: 25px;}
.express .input-box>p{float: left; height: 50px; width: 100%;text-align: left;}
.express .input-box .insure{ margin: 0 0 20px 170px;width: 360px;}
.express .input-box .insure .blue-font{margin: 0 }
.express .input-box .insure p{float: left; height: 50px; width: 100%;text-align: left;}
.express .input-box .notInsure {margin-left: 315px;}
.express .input-box .notInsure label{display: block;text-align: left; padding: 8px 0;}
.express .input-box .notInsure label>input{margin:0 20px ; width:100px;height: 20px;}
.express .input-box .notInsure label>span{margin:0 24px ; width:100px;padding:0}
.express .pick-person{margin:20px 0;height:60px;padding: 20px 0;}
.express .pick-person .left{float:left;margin-left:20px;}
.express .pick-person span{padding:0 20px 0 0;}
.express .pick-person a{margin-top:15px;}
.express .remark{text-align: right;color: #d1131d;font-size: 16px;}
.express .remark input{margin:0 8px;vertical-align: middle;width:15px;}
/*鎻愯揣鍒楄〃*/
.title-btn{position:relative;}
.position .pick-record{position: absolute; right: 20px;top: 24px;width:80px;}
.position .pick-msg table tr{height:40px;}
.position .pick-msg table input{border: 1px solid #ddd; width: 120px;height: 20px;text-align:right;padding:0 4px;}
.position .pick-msg .pick-person label{ width: 130px;display: inline-block;}
.position .pick-msg .pick-person label>input{width:15px ;margin:0 10px;vertical-align: middle;}
.position .pick-msg .pick-person>input{float:right;margin:0 20px 0 0 ;padding:4px 10px ; width: 80px; cursor: pointer;}
/*鎻愯揣鎴愬姛*/
.pick-result{background: #f2f2f2;text-align:left;margin:20px 0;}
.pick-result .result p{line-height:40px;font-size:16px;padding:5px 0;}
.pick-result .result strong{display: inline-block; width: 120px;text-align: right;}
.pick-result .result span{padding-left:20px;}
.pick-result .result{border-bottom:2px dashed #fff;padding:30px 80px;}
.pick-result .tips{padding:30px 80px;color:#808080;}
.pick-result .tips>strong{color:#d1131d;font-size:16px;padding:5px 0;}
.pick-result .tips p{ padding: 5px 0;line-height: 25px;}
.btn-box>a{ padding: 5px 0; width: 150px; margin: 10px 5%;}
.merge{ background: #f2f2f2; text-align: left;padding: 15px 50px;color: #d1131d;font-size: 16px;margin: 20px 0;}
/*鎻愯揣璁板綍*/
.express-id{display:none;color:#d1131d;position: absolute;right:0px; bottom:28px;background: #f2f2f2; padding:2px 5px; width: 85px;height: 42px; }
.express-id:before{content:'';display:block;width: 0;height: 0;border-right: 5px solid transparent;border-top: 10px solid #f2f2f2;border-left: 5px solid transparent; position: relative; top: 43px; left: 35px;}
.express-id small{display: block;margin-top:-2px;}
.pickRecord {}
.pickRecord p{float: left;height: 60px; line-height: 60px;font-size:15px;}
.pickRecord a{float: right;margin:18px 0;background: #d1131d; color: #fff;padding: 2px 5px;border-radius: 5px;}
.linkBtn{color: #fff;display: inline-block;background: #d1131d; width: 120px;height: 30px;text-align: center; line-height: 30px;border-radius: 5px;}
.linkBtn:hover{color: #fff;}
/*灏佽 璐圭敤缁熻*/
.positionGift-price{background: #f2f2f2;padding: 10px 0;margin: 0 0 10px;}
.positionGift-price .totle{border-top: 3px dashed #fff; padding-top: 15px!important;}
.positionGift-price label{display: block; padding: 8px 0 8px 315px;}
.positionGift-price label>span{text-align: right;margin: 0 22px; width: 100px!important; padding: 0!important;display: inline-block;}
.positionGift-price label small{ display: inline-block;font-size: 14px;color: #000!important; margin: 0!important;text-align: right!important; width: 100px!important; padding: 0!important;}
.positionGift-price label{display: block; padding: 8px 0 8px 210px;}
.express .positionGift-price{padding:0;}
/*缃戠偣鑷彁*/
.branchPosition{background: #f2f2f2; margin: 15px 0; padding: 10px 0;}
.branchPosition .branch {padding: 10px 50px; border-bottom: 2px dashed #fff;font-size:15px;}
.branchPosition .branch .branch-name{float:left;}
.branchPosition .branch .branch-time{float:right;}
.branchPosition .self-msg {margin:10px 50px;}
.branchPosition .self-msg .msg{float: left;width: 85%;}
.branchPosition .self-msg .msg p{float:left;line-height:30px;margin:0 40px 0 0;text-align: left;}
.branchPosition .self-msg .msg label{display: inline-block;width: 70px;text-align: right;}
.branchPosition .self-msg .vetically{ margin:15px 0;padding:3px 20px;}
.branch-box {margin: 15px 0 15px 40px ;line-height:25px;}
.branch-box .branch-msg{ text-align: left; float:left}
.branch-box .branch-msg strong{font-size:16px;}
.branch-box .branch-msg p{padding: 0 100px 0 0;}
.branch-box .branch-msg .msg p{float:left;}
.branch-box a{margin-top: 50px;color: blue; text-decoration: underline; display: inline-block;float:right;}