﻿*
{
	margin: 0;
	padding: 0;
}
.tables
{
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
}
table td
{
	word-break: break-all;
	word-wrap: break-word;
}
.container
{
	width: 100%;
	height: 450px;
	padding: 0;
	box-sizing: border-box;
}

.div_Box
{
	width: 100%;
}
.div_head
{
	width: 100%;
	overflow: hidden;
	padding-right:4px;
}
.div_content
{
	width: 100%;
	height: 350px;
	overflow: auto;
	overflow-y:scroll;
}
.tb_head
{
	width: 1600px;
}
.tb_content
{
	width: 1600px;
	overflow: auto;
}
th, td
{
	width: 80px;
	overflow: hidden;
	text-align: center;
}
/*th
{
	color: #1E304F;
	background-color: #F3F8FF;
}
td
{
	color: #384967;
}
tr:nth-of-type(odd)
{
	background: #E7F2FF;
}*/
/*可以美化一下滚动条*/
.div_content::-webkit-scrollbar
{
	/*滚动条整体样式*/
	width: 4px;
	height: 4px;
}
.div_content::-webkit-scrollbar-thumb
{
	/*滚动条里面小方块*/
	border-radius: 5px;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	background: rgba(0,0,0,0.2);
}
.div_content::-webkit-scrollbar-track
{
	/*滚动条里面轨道*/
	box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	border-radius: 0;
	background: rgba(0,0,0,0.1);
}
