.tab {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: black;
	padding: 20px;
}
.tab table{min-width: 44%;max-width: 100%;}
.tab td{
	color: #fff;
	padding:15px;

		background-color: #5F5F5F ;
	border-bottom: 1px solid #000000;
text-align: left;
}
.tab table tr:first-child td{ /*控制表格第一个单元格的宽度*/
	color: #000;
	background-color: #fff ;
	padding: 20px;
	font-weight: bold;

}
.tab table tr:hover td,.tab table tr:hover td a{ /*控制表格第一个单元格的宽度*/
	color: #fff;
	background-color:#1c3160;
}


/*偶行*/
.tab .even {
	background-color:#5F5F5F;

}
/*奇行*/
.tab .odd {

}

