﻿/*自定义滚动条样式*/
::-webkit-scrollbar
{
	overflow: visible;
	width: 6px;
	height: 17px;
}

::-webkit-scrollbar-button
{
	width: 48px;
	height: 0;
}

::-webkit-scrollbar-thumb
{
	min-height: 28px;
	padding: 100px 0 0;
	border: solid transparent;
	border-width: 1px;
	background-color: rgba(138, 153, 170, .6);
	background-clip: padding-box;
}

::-webkit-scrollbar-thumb:horizontal
{
	padding: 0 0 0 100px;
	border-width: 6px 1px 1px;
}

::-webkit-scrollbar-thumb:hover
{
	background-color: rgba(138, 153, 170, .8);
}

::-webkit-scrollbar-thumb:active
{
	background-color: rgba(138, 153, 170, 1);
}

::-webkit-scrollbar-corner
{
	background: transparent;
}
