* {
	padding:0;
	margin:0;
	box-sizing: border-box;
}
li {
	list-style:none;
}
a {
	text-decoration: none;
	color: black;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
/*顶部导航栏*/
.top-wrap{
	position: relative;
	width: 100%;
	height: 0.88rem;
	padding: 0 0.4rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F88300;
}
.Goback{
	position: absolute;
	width: 0.17rem;
	height: 0.3rem;
	left: 0.17rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	background: url(../image/goback.png) no-repeat;
	background-size: 100% 100%;
}
.top-wrap .page-title{
	width: 60%;
	height: 0.88rem;
    line-height: 0.88rem;
    text-align: center;
    font-size: 0.38rem;
	color: white;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.top-wrap .reIndex{
	position: absolute;
	width: 0.45rem;
	height: 0.39rem;
	right: 0.18rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	background: url(../image/reIndex.png) no-repeat;
	background-size: 100% 100%;
}
/*搜索*/
.search-wrap{
	width: 100%;
	height: auto;
	padding: 0.2rem 0.24rem;
}
.search-bar{
	width: 100%;
	height: 0.53rem;
	font-size: 0;
	position: relative;
}
.search-icon{
	position: absolute;
	left: 0.2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 0.25rem;
	height: 0.26rem;
	background: url(../image/personList/search-icon.png) no-repeat;
	background-size: 100% 100%;
}
.search-bar input::-webkit-input-placeholder{
    color: #B1B1B1;
    font-size: 0.24rem;
}
.search-bar input{
	width: 100%;
	height: 100%;
	outline: none;
	border: 0;
	padding-left: 0.65rem;
	background: #F9F9F8;
	border-radius: 13px;
}
.title-wrap{
	width: 100%;
	height: 0.8rem;
	overflow: hidden;
}
.list-title{
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow-x: auto;
}
.title-item{
	width: auto;
	height: 0.8rem;
	line-height: 0.8rem;
	color: #8A9095;
	padding: 0 0.2rem;
	font-size: 0.28rem;
	position: relative;
}
.title-on{
	color: #F88300;
}
.title-on:after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
    display: block;
    margin: 0 auto;
    height: 0.08rem;
    width: 60%;
    border-radius: 4px;
    background: linear-gradient(to right, #EF7E07, #F8B301);
}
/*列表内容*/
.list-wrap{
	width: 100%;
	height: auto;
	padding: 0 0.24rem 0.5rem;
}
.person-list{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	display: none;
}
.list-on{
	display: flex;
}
.person-item a:before{
	content: '';
	position: absolute;
	left: 50%;
	top: -0.04rem;
	transform: translateX(-50%);
    display: block;
    margin: 0 auto;
    height: 0.08rem;
    width: 60%;
    border-radius: 4px;
    background: #DEDEDE;
}
.person-item a{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	position: relative;
	border-radius: 5px;
  	background-color: rgb(255, 255, 255);
  	box-shadow: 0px 4px 24px 0px rgba(28, 28, 28, 0.21);
}
.person-item:nth-child(n){
	margin-left: 0.5rem;
}
.person-item:nth-child(n+4){
	margin-top: 0.3rem;
}
.person-item:nth-child(3n+1){
	margin-left: 0;
}
.person-pic{
	width: 0.9rem;
	height: 0.9rem;
	margin: 0 auto;
	font-size: 0;
	position: relative;
}
.person-pic img{
	width: 100%;
	height: 100%;
}
.party-icon{
	position: absolute;
	right: -0.08rem;
	bottom: -0.08rem;
	z-index: 2;
	width: 0.45rem;
	height: 0.45rem;
	background: url(../image/party-icon.png) no-repeat;
	background-size: 100% 100%;
}
.person-name{
	width: 100%;
	height: auto;
	margin-top: 0.1rem;
	text-align: center;
	color: #333333;
	font-size: 0.28rem;
}
