* {
	margin: 0;
	padding: 0;
}

body {
	background: #14181F;
	overflow: hidden;
}


.about_body{
	margin: 1rem auto 1.17rem;
}
.about_body .zuzhi_name_cn {
	font-weight: 400;
	font-size: 0.54rem;
	color: #F2A366;
	text-align: center;
	margin-bottom: 0.23rem;
}

.about_body .zuzhi_name_en {
	font-weight: 300;
	font-size: 0.16rem;
	color: #F2A366;
	letter-spacing: 0.04rem;
	text-align: center;
}


.zuzhi{
	margin-top: 0.37rem;
	padding: 1.4rem 0 1rem;
	margin-bottom: 0.77rem;
	background: url(../img/zuzhi_bg.png) center no-repeat;
	background-size: 19.2rem 100%;
}
.zuzhi .zuzhi_body{
	width: 16rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.zuzhi .zuzhi_body img{
	max-width: 100%;
	width: auto;
	height: auto;
}
.about .btn_hd {
	display: flex;
	justify-content: center;
}

.about .btn_hd .btn_li {
	width: auto;
	height: auto;
	padding: 0.1rem 0.28rem;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 0.16rem;
	color: #F2A467;
	border-radius: 0.04rem;
	border: 0.01rem solid #F2A366;
	margin: 0 0.15rem;
	cursor: pointer;
}

.about .btn_hd .btn_li.act {
	color: #0A0E12;
	background: #F2A366;
}


.item_bd .item_li {
	display: none;
}
.item_bd .item_li.on {
	display: flex;
	flex-wrap: wrap;
}



/* 协会团队列表 */
.people_item {
	width: 4.16rem;
	height: 5.02rem;
	overflow: hidden;
	position: relative;
	margin-right: 0.36rem;
	margin-top: 1rem;
}
.people_item:nth-child(4n){
	margin-right: 0;
}
.people_item .people_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.people_item .people_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.people_item .people_txt {
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, 0.56);
	padding: 0.28rem 0.28rem 0.43rem;
	box-sizing: border-box;
	position: absolute;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	bottom: -110%;
}

.people_item .people_txt .people_key {
	width: 100%;
	text-align: center;
	font-weight: normal;
	font-size: 0.18rem;
	color: #FFFFFF;
	margin-bottom: 0.33rem;
	position: relative;
}

.people_item .people_txt .people_key::before {
	content: "";
	position: absolute;
	width: 0.48rem;
	height: 0.02rem;
	background: linear-gradient(90deg, rgba(216, 216, 216, 0) 0%, rgba(216, 216, 216, 0.49) 51%, rgba(216, 216, 216, 0) 100%);
	bottom: -0.08rem;
	left: 50%;
	transform: translateX(-50%);
}

.people_item .people_txt .people_name {
	font-weight: normal;
	font-size: 0.28rem;
	color: #FFFFFF;
	text-align: center;
}

.people_item:hover .people_txt {
	bottom: 0;
}




/* 会员名单列表 */
.name_list{
	width: 11.6rem;
	margin: 0 auto 0.8rem;
}
.name_list:first-child{
	margin-top: 0.5rem;
}
.name_list .name_title{
	font-weight: 800;
	font-size: 0.2rem;
	color: #F2A467;
	line-height: 0.22rem;
	position: relative;
	margin-bottom: 0.4rem;
}
.name_list .name_title::before{
	content: "";
	position: absolute;
	width: 0.09rem;
	height: 0.23rem;
	background: #F2A467;
	left: -0.21rem;
}
.name_list .name_cont{
	display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.name_list .name_cont span{
	font-weight: 400;
	font-size: 0.2rem;
	color: #F2A467;
	line-height: 0.22rem;
	margin-bottom: 0.31rem;
}



@media only screen and (max-width: 1024px) {
	.zuzhi .zuzhi_body{
		width: 100%;
	}

	.item_bd .item_li{
		gap: 0.2rem;
        margin-top: 0.6rem;
        padding: 0 0.2rem;
	}
	.people_item{
		width: calc(33.33% - 0.15rem);
        height: 3rem;
        margin: 0;
	}


	.people_item .people_txt{
		bottom: 0;
        padding: 0;
        align-content: center;
	}
	.people_item .people_txt .people_key{
		margin-bottom: 0.1rem;
	}
	.people_item .people_txt .people_name{
		font-size: 0.24rem;
	}


	.name_list{
		width: 100%;
	}
	.name_list .name_cont{
    	grid-template-columns: repeat(5, 1fr);
	}
}

