.table{
	font-size: 0.8rem;
	width: 100%;
}
.table{
	border-spacing: 0;
	border-top: 1px solid #E0E0E0;
	border-left: 1px solid #E0E0E0;
}
.table>thead>tr>th,
.table>tbody>tr>td{
	border-bottom: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
	padding: 10px 5px;
	font-weight: normal;
	text-align: left;
}
.table>thead>tr>th{
	font-weight: bold;
	letter-spacing: 1px;
	color: #1a1a1a;
	background-color: #edeef0;
}
.table>tbody>tr>td{
	color: #3a3a3a;
}
.table>thead>tr>th.center,
.table>tbody>tr>td.center{
	text-align: center;
}
.table>thead>tr>th.right,
.table>tbody>tr>td.right{
	text-align: right;
}

.table_striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table>tbody>tr:hover,
.table>tbody>tr.hover,
.table>tbody>tr:active,
.table>tbody>tr.active{
	background-color: #f5f5f5;
}

.table_boder_hori{
	border-right: 1px solid #E0E0E0;
}
.table_boder_hori>thead>tr>th,
.table_boder_hori>tbody>tr>td{
	border-bottom: 1px solid #E0E0E0;
	border-right: none;
}

/* 固定表头表格 */
.table_fixed_head_wrap{
	width: 100%;
	height: 400px;
	overflow: hidden;
}
.table_fixed_head_wrap>.table_fixed_head{
	width: 100%;
	background-color: #edeef0;
}
.table_fixed_head_wrap>.table_fixed_body{
	width: 100%;
}
.table_fixed_head_wrap>.table_fixed_head >tr>th{
	height: 20px;
}
.table_fixed_head_wrap>.table_fixed_body{
	height: 360px;
	overflow: auto;
	padding-bottom: 0px;
}

/* 首列固定表格样式 */
.table_fixed_firstCol_wrap{
	width: 100%;
	overflow: hidden;
}
.table_fixed_firstCol_wrap>.table_fixedCol_column{
	float: left;
	width: 40%;
}
.table_fixed_firstCol_wrap>.table_fixedCol_body{
	float: left;
	overflow-x: auto;
	margin-left: -1px;
}

