/*header*/
.header {
	width: 100%;
	height: 1.1rem;
  padding: .1rem 2%;
	display: flex;
	align-items: center;
  margin-bottom: .2rem;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	font-size: .34rem;
}
.search-box {
	width: 100%;
	height: .6rem;
	border: .01rem solid #7d7d7d;
	border-radius: 8px;
	display: flex;
	position: relative;
}
.search{
	width: 100%;
	height: .6rem;
	line-height: .6rem;
	background: url(../images/common/icon_search.png) no-repeat center left 2%;
	background-size: .4rem;
	padding-left: .81rem;
	font-size: .24rem;
}
body{
  width: 100%;
	min-height: 100vh;
	/* overflow-y: auto; */
	overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 1.25rem;
  background-color: #f7f7f7;
}
body>.content{
	width: 100%;
	height: 100%;
  padding-right: 2%;
  display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.content>.aside{
	width: 26%;
	font-size: .28rem;
	color: #7E7E7E;
	padding: .4rem 3%;
	background-color: #fff;
	height: calc(100vh - 2.5rem);
}
.aside>li{
	margin-bottom: .6rem;
}
.aside>li>a{
	display: block;
	font-size: .28rem;
	text-align: center;
	height: .5rem;
	line-height: .5rem;
	border-radius: 5px;
}
.aside>li>.active{
	background-color: #d1b43e;
	color: #fff;
}
.content>.section{
	width: 71.6%;
	font-size: .28rem;
	color: #7E7E7E;
	height: calc(100vh - 2.5rem);
	overflow-y: auto;
}
.content>.section>a{
	font-size: .28rem;
	color: #7E7E7E;
}
.section-el{
	background-color: #fff;
	padding: .45rem .3rem .2rem;
	width: 100%;
	border-radius: 9px;
	margin-bottom: .2rem;
}
.content>.section>.section-el:last-child{
	margin-bottom: 0;
}
.section-el>p{
	color: #323232;
	font-size: .28rem;
	margin-bottom: .25rem;
}
.section-con{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.section-con>li{
	width: 49%;
	/* height: 2.7rem; */
	margin-bottom: .43rem;
}
.section-con>li>a>.img-box{
	width: 75%;
	margin: 0 auto;
	height: 2.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: .1rem;
}
.img-box>img{
	height: auto;
	max-height: 1.6rem;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}
.section-con>li>a>p{
	text-align: center;
	font-size: .28rem;
	color: #7E7E7E;
}