.teamInfo1{
	padding: 50px 50px 30px;
}
.teamList{
	display: flex;
	flex-wrap:wrap;
	align-content:flex-start;
	margin-top: 30px;
}
.teamList li{
	width:calc(50% - 12px);
	margin: 0 24px 24px 0;
	background: linear-gradient(to bottom,#f5f5f5,#f7f7f7,#fbfbfb,#fefefe,#fff);
	cursor: pointer;
}
.teamList li:nth-child(2n){
	margin-right: 0;
}
.teamList li:hover{
	background: url(../images/icon/bgTeam1.png) #fff no-repeat right bottom;
	box-shadow: 5px 5px 10px 1px rgba(204,204,204,0.15);
	border-bottom: 3px solid #00d3dd;
}
.teamList li .detail{
	display: none;
}
.teamList li .info{
	padding-left: 255px;
	margin-bottom: 40px;
	margin-right: 60px;
	position: relative;
}
.teamList li .pic{
	width: 160px;
	height: 160px;
	border-radius: 160px;
	position: absolute;
	left: 40px;
	top: 40px;
}
.teamList li .infoRight{
	border-bottom: 1px solid #eee;
	padding: 80px 50px 35px 0;
}
.teamList li .name{
	font-size: 30px;
	margin-bottom: 20px;
}
.teamList li .position{
	font-size: 18px;
	color: #555;
	margin-bottom: 8px;
}
.teamList .dl{
	padding: 0 70px 20px 80px;
}
.teamList .dl .dd{
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 25px;
	position: relative;
	display:none;
}
.teamList .dl .dd:nth-child(1){
	display: block;
}
.teamList .dl .dd:nth-child(2){
	display: block;
}
.teamList .dl .dd::before{
	content: '';
	display: block;
	width:4px;
	height: 4px;
	border-radius: 4px;
	background: #8c8c8c;
	position: absolute;
	top:13px;
	left:-12px;
}

.teamInfo2{
	padding: 20px 0 80px;
}
.teamInfo2 .teamList li{
	width:calc(33.33% - 16px);
}
.teamInfo2 .teamList li:nth-child(2n){
	margin-right: 24px;
}
.teamInfo2 .teamList li:nth-child(3n){
	margin-right: 0;
}
.teamInfo2 .teamList li .info{
	padding: 55px 130px 30px 0;
	min-height: 200px;
	margin-left: 35px;
	margin-right: 35px;
	border-bottom: 1px solid #eee;
}
.teamInfo2 .teamList li .infoRight{
	border:none;
	padding: 0;
}
.teamInfo2 .teamList li .pic{
	width: 120px;
	height: 120px;
	left: auto;
	right: 0;
	top: 40px;
}
.teamInfo2 .teamList .dl{
	padding: 0 35px 20px 35px;
}
.teamInfo2 .teamList .dl .dd{
	margin-bottom: 15px;
}

.popup{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.49);
	display: none;
}
.popup .popupM{
	width: 820px;
	max-width: 90%;
	max-height: 90%;
	min-height: 100px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding-top: 60px;
	border-radius: 10px;
	display: flex;
}
.popupM .popupTitle{
	padding: 40px 0 50px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.popupM .iconPopupClose{
	display: block;
	width: 32px;
	height: 322px;
	border-radius: 22px;
	position: absolute;
	top: 20px;
	right: 30px;
	cursor: pointer;
}
.popupM .iconPopupClose:hover{
	opacity: 0.8;
}
.popupM .iconPopupClose::before,
.popupM .iconPopupClose::after{
	content: '';
	display: block;
	width: 2px;
	height: 30px;
	background: #00d3dd;
	position: absolute;
	left: 10px;
	top: 5px;
}
.popupM .iconPopupClose::before{
	transform: rotate(45deg);
}
.popupM .iconPopupClose::after{
	transform: rotate(-45deg);
}
.popup .popupContent{
	overflow: auto;
	border-radius: 10px;
	width: 100%;
}

.detailContent{
	height: 100%;
	padding: 20px 70px 65px 260px;
	position: relative;
	background: url(../images/icon/bgTeam2.png) #fff no-repeat left bottom;
}
.detailContent .pic{
	width: 150px;
	height: 150px;
	border-radius: 150px;
	position: absolute;
	left: 60px;
	top: 20px;
}
.detailContent .name{
	font-size: 30px;
	margin-bottom: 15px;
}
.detailContent .position{
	font-size: 18px;
	color: #555;
}
.detailContent .infoRight{
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}
.detailContent .desc{
	font-size: 16px;
	line-height: 32px;
	padding: 20px 0 0;
}

@media screen and (max-width:1280px) {
	.teamList li .info{
		margin-right: 20px;
	}
	.teamInfo2{
		padding: 20px 0 50px;
	}
	.teamInfo2 .teamList li{
		width: calc(50% - 10px);
		margin: 0 15px 15px 0;
	}
	.teamInfo2 .teamList li:nth-child(3n){
		margin-right: 15px;
	}
	.teamInfo2 .teamList li:nth-child(2n){
		margin-right: 0;
	}
}

@media screen and (max-width:1024px) {
	.teamInfo1{
		padding: 30px 0;
	}
	.teamList li .info,
	.teamInfo2 .teamList li .info{
		padding: 30px 20px 0;
		text-align: center;
	}
	.teamList li .pic{
		position: static;
	}
	.teamList li .infoRight,
	.teamInfo2 .teamList li .infoRight{
		padding: 20px 0;
	}
	.teamList .dl{
		padding: 0 20px 20px 30px;
	}
}

@media screen and (max-width:640px) {
	.teamList li,
	.teamInfo2 .teamList li{
		width: 100%;
		margin: 0 auto 20px;
	}
	.teamList li .info{
		margin:0 auto 20px;
	}
	.teamList li .name,
	.detailContent .name{
		font-size: 22px;
	}
	.teamList li .position,
	.detailContent .position{
		font-size: 14px;
	}
	.teamList .dl .dd{
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 15px;
	}
	.detailContent{
		padding: 20px;
		text-align: center;
	}
	.detailContent .pic{
		position: static;
	}
	.detailContent .desc{
		text-align: left;
	}
}
