.Popup
    {  
        display:none;  
        border:none;  
        height:600px;  
        width:700px;  
        position:absolute;/*让节点脱离文档流,我的理解就是,从页面上浮出来,不再按照文档其它内容布局*/  
        top:100px;/*节点脱离了文档流,如果设置位置需要用top和left,right,bottom定位*/  
        left:30%;  
        z-index:2;/*个人理解为层级关系,由于这个节点要在顶部显示,所以这个值比其余节点的都大*/  
        background: white;  
        padding:20px 30px;
    }  
    .Popup .pop-title{
    	font-size:16px;
    	margin-bottom:20px;
 
    }
    .Popup .pop-title .icon-remove{
    color:#bababa;
    }
    .Popup .pop-title .icon-remove:hover{
    color:#ababab;
    }
    .Popup .pop-title a{
    display:block;
    float:right;
    }
    .pop-table-warpper{
      margin-top:10px;
     height:470px;
    overflow-y:scroll;
    }
    .pop-table{
    width:100%;
    }
    .pop-table td{
    height:36px;
    border:#ededed 1px solid;
    text-align:center;
    }
    .pop-table th{
     height:36px;
     background: #f1f1f1;
     text-align:center;
     border:#e5e5e5 1px solid;
    }
    .pop-search label{
    margin-right:4px;
    }
   .pop-search input{
   height:30px;
   padding-left:4px;
    margin-right:14px;
    border:#ddd 1px solid;
   }
    #over
    {  
        width: 110%;  
        height: 165%;  
        opacity:0.8;/*设置背景色透明度,1为完全不透明,IE需要使用filter:alpha(opacity=80);*/  
        filter:alpha(opacity=80);  
        display: none;  
        position:absolute;  
        top:0;  
        left:0;  
        z-index:1;  
        background: silver;  
    } 