
.showTable {
	width: 100%;
	height: 90%;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0px;
}


.showTableValue {
	width: 1300px;
	/* width: 100%; */
	height: 100%;
	display: inline-block;
	overflow: hidden;
} 
  
 .showTable::-webkit-scrollbar {
 	width: 8px;
 	height: 8px;
 }
 
 .showTable::-webkit-scrollbar-thumb {
 	/*滚动条里面小方块*/
 	border-radius: 50px;
 	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
 	background: rgba(0, 0, 0, 0.2);
 }
 
 .showTable::-webkit-scrollbar-track {
 	/*滚动条里面轨道*/
 	-webkit-box-shadow: outset 0 0 0 rgba(0, 0, 0, 0.2);
 	border-radius: 0;
 	background: rgba(0, 0, 0, 0.1);
 	background-color: #fefefe;
 }
 