/* 20200102 example data table start */
.own_table
{
	position:relative;
    border: 0.8px solid #e5e5e5;
	margin:0 auto;
}
.table_ttiel
{
	box-sizing:border-box;
	
	font-weight: 400;
    color: #999;
    background-color: #f6f6f6;
	
	display: flex;
	justify-content: center;
	
	border-bottom: 0.8px solid #e5e5e5;
}
.table_thead
{
	box-sizing:border-box;
	
	font-weight: 400;
    color: #999;
    background-color: #f6f6f6;
	
	display: flex;
	justify-content: center;
}
.table_th
{
	box-sizing:border-box;
	
	padding: 15px 10px;
    text-align: center;
	
	border-right:0.8px solid rgba(0,0,0,0.1);
}
.table_th:last-child {
  border-right-width:0px;
}
.table_tbody
{
	position:relative;
	/* max-height:400px; */
	overflow-y:auto;
}
/*--scrollbar---*/
.table_tbody::-webkit-scrollbar {
	bottom: 0;
    left: 0;
    width: 0.5px;
}
.table_tbody::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(0, 0, 0, .2);
}
.table_tbody::-webkit-scrollbar-track {
    background: rgba(222, 222, 222, .75);
}
/*--scrollbar---*/
.table_tr
{
	box-sizing:border-box;
	
	display: flex;
	justify-content: center;
	border-top:0.5px dashed rgba(0,0,0,0.1);
}
.table_tr:first-child
{
	border-top-width:0px;
}
.table_td
{
	color:rgba(0,0,0,0.76);
	box-sizing:border-box;
	
	padding: 10px 5px;
    text-align: center;
	
	border-right:0.5px dashed rgba(0,0,0,0.1);
}
.table_td:last-child {
  border-right-width:0px;
}
.table_footer
{
	box-sizing:border-box;
	
	font-weight: 400;
    color: #999;
    background-color: #f6f6f6;
	
	display: flex;
	justify-content: center;
}
.table_footer_ocolor
{
	background-color: #D7FFEE;
}
.table_ftd
{
	box-sizing:border-box;
	
	padding: 4px 2px;
    text-align: center;
	
	border-right:0.8px solid rgba(0,0,0,0.1);
}
.table_ftd:last-child {
   border-right-width:0px;
}
.number_color
{
	color:#ff9090;
}
/* 20200102 example data table end */