@charset "utf-8"; /* CSS Document */ /*页面内的元素无法选中*/ *{ 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; } #tbHead{ width:100%; height:30px; position:relative; overflow:hidden; } #tbHead table{ position:absolute; width: 100%; 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; } /*表格滚动部分*/ #tbWarn{ width:100%; height:460px; position:relative; overflow: auto; } #tbWarn table{ position:absolute; width: 100%; border-collapse:collapse; top:-30px; } #tbWarn 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; } #tbWarn table tbody td{ border:1px solid #ccc; padding:6px 10px; text-align: center; white-space: nowrap; } #tbWarn table tbody tr:hover { background-color: #eee; } /*表格右键选中行的样式*/ .rightTr{ color:#0000ff; } /*右键菜单样式*/ #rightMenu{ display: none; position:absolute; background-color:#fff; color:#000; z-index: 998; } #rightMenu .revise,#rightMenu .ensure{ border:1px solid #ccc; padding:4px 16px; background-color:#fff; } #rightMenu .revise:hover,#rightMenu .ensure:hover{ background-color:green; color:#fff; }