/* 服务中心 */
#wrap-businessrange {
	overflow: auto;
	height: 100vh;
}
#wrap-businessrange .banner-image{
	width: 100%;
}
/* 内容容器 */
#wrap-businessrange .content-container {
	width: calc(100% * 0.83);
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
}

/* 左侧列表项 */
#wrap-businessrange .list-item {
	width: 160px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	margin-bottom: 10px;
	cursor: pointer;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	overflow: hidden;
	transition: background-color 0.2s ease 0s;
	background-color: #0760ab;
}

/* 列表交互效果 */
#wrap-businessrange .list-item:hover {
	background-color: #00b277;
}

#wrap-businessrange .list-checked {
	background-color: #00b277 !important;
}

/* 右侧内容容器 */
#wrap-businessrange .detail-container {
	margin-left: 100px;
}

/* 内容标题 */
#wrap-businessrange .detail-title {
	font-size: 20px;
	color: #0760ab;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 具体内容 */
#wrap-businessrange .detail-info {
	color: #676767;
	font-size: 14px;
	line-height: 1.4rem;
}

/* 右侧p标签css */
#wrap-businessrange .synopsis-item p {
	margin-bottom: 10px;
}
/* 说明 */
#wrap-businessrange .explain-info{
	margin-bottom: 20px;
}
/* 标题小箭头 */
	#wrap-businessrange .scope-title {
		font-weight: bold;
		background: url('../images/list.gif') no-repeat 0 7px;
		padding-left: 15px;
		margin-top: 6px;
		margin-bottom: 6px;
	}