﻿/* 解决方案CSS */
#wrap-solution {
	overflow: auto;
	height: 100vh;
}

/* banner图 */
#wrap-solution .banner-image {
	width: 100%;
}

/* 内容容器 */
#wrap-solution .content-container {
	width: calc(100% * 0.83);
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
}

/* 左侧列表项 */
#wrap-solution .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-solution .list-item:hover {
	background-color: #00b277;
}

#wrap-solution .list-checked {
	background-color: #00b277 !important;
}

/* 右侧内容容器 */
#wrap-solution .detail-container {
	margin-left: 100px;
}

/* 内容标题 */
#wrap-solution .detail-title {
	font-size: 25px;
	color: #0760ab;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 具体内容 */
#wrap-solution .detail-info {
	color: #676767;
	font-size: 14px;
	line-height: 1.6rem;
}

/* 右侧p标签css */
#wrap-solution .synopsis-item p {
	margin-bottom: 25px;
}

/* 说明 */
#wrap-solution .explain-info {
	margin-bottom: 20px;
}

/* 标题小箭头 */
#wrap-solution .scope-title {
	font-weight: bold;
	background: url(../images/list.gif) no-repeat 0 7px;
	padding-left: 15px;
	margin-top: 6px;
	margin-bottom: 6px;
   	font-size: 16px;

    	color: #333;
}

/* 链接靠右 */
#wrap-solution .detail-link {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

/* 查看详细方案按钮 */
#wrap-solution .detail-button {
	width: 150px;
	text-align: center;
	line-height: 40px;
	height: 40px;
	border-radius: 20px;
	font-size: 15px;
	background-color: #f8f8f8;
	border: 1px #D9D9D9 solid;
	color: #666666;
}
/* 交互效果 */
#wrap-solution .detail-button:hover {
	color: #0661ab;
}
