.body {
	height: auto;
}

/* 案例详情页面样式 */
.body .case_title {
	height: 400px;
	background: url("../img/banner.jpg") no-repeat;
	background-size: cover;
}

.body .page_switch {
	display: flex;
	justify-content: space-between;
	width: 60%;
	height: 100px;
	background: rgba(255, 255, 255, 0.95);
	margin: auto;
	position: relative;
	top: 300px;
	border-bottom: 1px solid rgb(234, 234, 234);
}

.body .page_switch button {
	margin: 0px 10px;
	background: rgba(255, 255, 255, 0);
	cursor: pointer;
}

.body .page_switch button span {
	font-size: 2rem;
}

.body .page_switch button span:hover {
	color: rgb(97, 145, 219);
}

.body .detail {
	width: 60%;
	margin: 15px auto;
	margin-bottom: 50px;
}

.body .detail div:first-child {
	margin-top: 30px;
	padding: 40px;
	border-bottom: 1px solid rgb(234, 234, 234);
}

.body .detail h1 {
	line-height: 40px;
	text-align: center;
}

.body .detail img {
	margin: 20px 0px;
	width: 100%;
	max-width: 1152px;
}

.disabled {
	opacity: 0.5 !important;
	cursor: not-allowed !important;
}

.body .page_switch button:disabled:hover span {
	color: inherit;
}
.detail_text{
	line-height: 20px;
	letter-spacing: 2px;
}
.detail_img{
	max-width: 1152px;
	margin: 20px 0px;
	display: flex;
	justify-content: center;
}
.detail_img img{
	width: 70% !important;
}
@media (max-width: 768px) {
	.page_switch {
		align-items: center;
		height: auto; 
		padding: 10px;
	}

	.body .detail {
		width: 100%;
	}
	.body .detail img {
		width: 100%;
	}
}