@charset "utf-8";
|
/* CSS Document */
|
/*表格头部固定部分*/
|
#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;
|
}
|
/*表格滚动部分*/
|
#tbEquipWarn{
|
width:100%;
|
height:380px;
|
position:relative;
|
overflow:scroll;
|
}
|
#tbEquipWarn table{
|
position:absolute;
|
border-collapse:collapse;
|
top:-30px;
|
}
|
#tbEquipWarn 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;
|
}
|
#tbEquipWarn 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%;
|
}
|
/*等待框*/
|
.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;
|
}
|
/*整体的遮罩层*/
|
#allShade{
|
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;
|
}
|