.show{/*展示区*/
	padding: 10px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.now{/*当前文职*/
	padding: 0 2%;
	line-height: 3;
	color: #333;
	border-bottom: 1px dotted #aaa;
}
.now a{/*当前位置链接*/
	display: inline;
	color: #333;
}
.left{/*左侧导航*/
	width: 26%;
	float: left;
	box-sizing: border-box;
	padding: 10px;
}
.left-title{/*左侧当前栏目*/
	width: 100%;
	line-height: 2;
	font-size: 200%;
	text-align: center;
	background-color: #d9628b;
	color: #fff;
}
.left a{/*左侧导航按钮*/
	display: block;
	line-height: 2.5;
	text-align: center;
	overflow: hidden;
	margin: .25em 0;
	background-color: #eee;
}
.left a.hover,.left a:hover{/*左侧导航按钮高亮*/
	background-color: #d9628b;
	color: #fff;
}
.content{/*内容展示区*/
	width: 74%;
	float: right;
	box-sizing: border-box;
	padding: 10px;
}
.classname{/*右侧标题*/
	line-height: 2;
	font-size: 200%;
}
@media screen and (max-width:666px){
	.left{
		display: none;
	}
	.content{
		width: 100%;
		float: none;
	}
}