@media screen and (max-width:768px){
.tableWrap {
	width:100%;
	overflow:auto;
	box-sizing: border-box;
}
.tableWrap > table{
	width:740px;
	overflow-x:scroll;
	-webkit-overflow-scrolling: touch;
}
.tableWrap::-webkit-scrollbar {
	height: 10px;
}
.tableWrap::-webkit-scrollbar-track {
	background: #e3e4e5;
}
.tableWrap::-webkit-scrollbar-thumb {
	background: #84919d;
}
}