::-webkit-scrollbar {
	
	width: 1vw;
	height: 1vw;
	max-width: 8px;
	max-height: 10px;

}

::-webkit-scrollbar-track-piece {

	background-color: #272b30;

}

::-webkit-scrollbar-thumb {

	border-radius: 10px;
	background-color: #6b7684;
	background-clip: padding-box;
	min-height: 28px;

}

::-webkit-scrollbar-thumb:hover {

	border-radius: 10px;
	background-color: #949fad;

}

::-webkit-scrollbar-track {

	border-radius: 10px;
	background: #949fad;

}

/*目录滚动条*/
.menu-list::-webkit-scrollbar {
	
	width: 1vw;
	height: 1vw;
	max-width: 5px;
	max-height: 10px;

}

.menu-list::-webkit-scrollbar-track-piece {

	background-color: #343a40;

}

.menu-list::-webkit-scrollbar-thumb {
	
	border-radius: 10px;
	background-color: #5d7083;
	background-clip: padding-box;

}

.menu-list::-webkit-scrollbar-thumb:hover {

	background-color: #949fad;

}

.menu-list::-webkit-scrollbar-track {

	border-radius: 10px;
	background: #949fad;

}

/*表格滚动条*/
.table>div::-webkit-scrollbar {
	
	width: 1vw;
	height: 1vw;
	max-width: 5px;
	max-height: 5px;

}

.table>div::-webkit-scrollbar-track-piece {

	background-color: #fff;

}

.table>div::-webkit-scrollbar-thumb {
	
	border-radius: 0px;
	background-color: #cfcece;
	background-clip: padding-box;
	min-height: 28px;

}

.table>div::-webkit-scrollbar-thumb:hover {

	background-color: #cfcece;

}

.table>div::-webkit-scrollbar-track {

	border-radius: 0px;
	background: #EDEDED;

}