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
@charset "utf-8";
/* CSS Document */
#eleInfor .checkCon{
    width:100%;
}
#eleInfor .summary{
    display: block;
    width:100%;
    height:30px;
    line-height: 30px;
    text-align: center;
    background:url(../image/table_th_bg.gif) repeat-x;
    /*将内容变得不可选*/
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
#eleInfor .summary:hover{
    color:green;
}
#eleInfor .checkCon table{
    width:100%;
    border-collapse:collapse;
}
#eleInfor .fWeight{
    font-weight:bold;
}
#eleInfor .fWeight td {
    text-align: center;
    padding:6px;
}
#eleInfor .checkCon table td{
    white-space: nowrap;
    border:1px solid #ccc;
}
#eleInfor .checkCon table select{
    width:100%;
    height:100%;
}
#eleInfor .checkCon .FixedLen{
    width:140px;
}
#eleInfor .checkCon table input{
    width:100%;
    height:20px;
}
/*表格头部固定部分*/
#tbHead{
    width:100%;
    height:30px;
    position:relative;
    overflow:hidden;
}
#tbHead table{
    position:absolute;
    border-collapse:collapse;
}
#tbHead table thead th{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
    background:url(../image/table_th_bg.gif) repeat-x;
}
#tbHead table tbody td{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
}
/*表格滚动部分*/
#tbBrdw{
    width:100%;
    height:260px;
    position:relative;
    overflow:scroll;
}
#tbBrdw table{
    position:absolute;
    border-collapse:collapse;
    top:-28px;
    margin-bottom: 40px;
}
#tbBrdw table thead th{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
    background:url(../image/table_th_bg.gif) repeat-x;
}
#tbBrdw table tbody td{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
}
/*分页样式*/
#paging{
    padding:6px 0;
    font-size: 14px;
    background:url(../image/table_th_bg.gif) repeat-x;
    text-align: center;
}
#paging input{
    width:28px;
    height:24px;
    border:1px solid #00FFFF;
}
#paging span{
    margin-left:20px;
}
#paging a{
    margin-left:10px;
}
#paging .input_container{
    width:100%;
}
/*整体的遮罩层*/
#allTransShade{
    display:none;
    _display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#000;
    filter:alpha(opacity=0); /*IE滤镜,透明度50%*/
    -moz-opacity:0;     /*Firefox私有,透明度50%*/
    opacity:0;    /*其他,透明度50%*/
    z-index:99999990;
}
/*等待框*/
.wait{
    display:block;
    position:absolute;
    width:200px;
    height:60px;
    line-height: 60px;
    text-align:center;
    font-size:16px;
    color:black;
    background-color:#ccc;
    top:50%;
    margin-top:-30px;
    left:50%;
    margin-left:-100px;
}