﻿/* 成功案例 */
#wrap-successcase{
	overflow: auto;
	height: 100vh;
}
/* banner图 */
#wrap-successcase .banner-image {
	width: 100%;
}

/* 内容容器 */
#wrap-successcase .content-container {
	width: calc(100% * 0.83);
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
}

/* 左侧列表项 */
#wrap-successcase .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-successcase .list-item:hover {
	background-color: #00b277;
}

#wrap-successcase .list-checked {
	background-color: #00b277 !important;
}

/* 右侧内容容器 */
#wrap-successcase .detail-container {
	margin-left: 100px;
}

/* 内容标题 */
#wrap-successcase .detail-title {
	font-size: 22px;
	color: #0760ab;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 具体内容 */
#wrap-successcase .detail-info {
	color: #676767;
	font-size: 14px;
	line-height: 1.4rem;
}
/* 数据列表 */
#wrap-successcase .case-list{
	display: flex;
	flex-wrap: wrap;
}
#wrap-successcase .case-item{
	width: 317px;
	display: flex;
	border: solid 1px #dcd9d9;
	padding: 5px;
	margin-right: 22px;
	margin-bottom: 22px;
}
#wrap-successcase .case-image{
	width: 112px;
	height: 82px;
	margin-right: 6px;
}
#wrap-successcase .case-info{
	    display: flex;
	    flex-direction: column;
	    justify-content: space-around;
		width: calc(100% - 118px);
}
#wrap-successcase .hotel-name,
#wrap-successcase .case-version{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}