
/* 滚动内容样式 */
.scroll_main {
	width: 540px;
	display: block;
	height:405px;
	float:left;
	border-radius:5px;
}

/* 滚动内容区样式 */
.scroll_wrap {
	width: 100%;
	height: 405px;
	position: relative;
	border-radius:5px;
}
/* 滚动内容样式 */
.scroll_wrap .scroll_cont {
	height: 100%;
	overflow: hidden;
	border-radius:5px;
}
.scroll_wrap .scroll_cont p {
	padding:15px;
}
/* 滚动条 */
.scroll_wrap .scroll_bar {
	position: absolute;
	top:0;
	right:8px;
	width: 8px;
	height: 100%;
	/*background-color: #e4e4e4;*/
}
/* 滚动块 */
.scroll_wrap .scroll_slider {
	position: absolute;
	top: 0;
	left: 0px;
	width: 8px;
	height: 48px;
	background-color: #123559;
	border-radius:5px;
	opacity: .5
}
.scroll_wrap .scroll_slider:hover{
	opacity: 1
}