::-webkit-scrollbar {
	width: 3px;
	height: 10px;
}
/* 整个滚动条去除button剩下的部分 */
::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: transparent;
}
/* 滚动条可拖拽的部分 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
	background-color: #CBCBCB;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #adadad;
}
::-webkit-scrollbar-thumb:active {
	background-color: #CBCBCB;
}
::-webkit-scrollbar-corner {
	background-color: transparent;
}
::-webkit-scrollbar-resizer {
	background-color: transparent;
}