/* 滚动内容区样式 */
.scroll_container {
	min-width: 10px;
/* 	height: 350px; */
	position: relative;
/* 	background:#e44; */
}
/* 纵向滚动内容样式 */
.scroll_container .scroll_content {
	height: 100%;
	overflow: hidden;
	position: relative;
}


/* 横向滚动内容样式 */
.scroll_container .scroll_content_h {
	width: 100%;
	overflow: hidden;
	position: relative;
}

/* 纵向和横向滚动内容样式 */
.scroll_container .scroll_content_hv {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

/* 纵向滚动条 */
.scroll_container .scroll_bar {
	position: absolute;
	top:0;
	right:0;
	width: 7px;
	height: 100%;
	border-radius:3px;
	background-color: rgba(61,67,69,1);
}

/* 横向滚动条 */
.scroll_container .scroll_bar_h {
	position: absolute;
	left:0;
	bottom:0;
	height: 7px;
	width: 100%;
	border-radius:3px;
	background-color: rgba(61,67,69,1);
}

/* 纵向滚动块 */
.scroll_container .scroll_slider {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 7px;
	height: 40px;
	background-color: rgba(48,137,229,1.0);
	border-radius:5px;
	opacity: .5
}
.scroll_container .scroll_slider:hover{
	opacity: 1
}

/* 横向滚动块 */
.scroll_container .scroll_slider_h {
	position: absolute;
	bottm: 0px;
	left: 0px;
	height: 7px;
	width: 40px;
	background-color: rgba(48,137,229,1.0);
	border-radius:5px;
	opacity: .5
}
.scroll_container .scroll_slider_h:hover{
	opacity: 1
}