/* 针对大屏幕的样式 */
@media screen and (min-width: 1024px) {
	.peopleInfoContent {
		width: 78%;
		height: auto;
		padding-right: 30px;
		box-sizing: border-box;
		
	}
	.infoContent{
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.infoLeft{
		width: 25%;
		height: auto;
		box-sizing: border-box;
	}
	.infoImg{
		width: 100%;
		height: auto;
		position: relative;
	}
	.infoImg span{
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 3px 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(0, 0, 0, .6);
		color: #fff;
		font-size: 16px;
	}
	.infoImg img{
		width: 100%;
	}
	.infoDetail{
		flex:1;
		height: auto;
		min-height: 768px;
		padding-left: 30px;
		box-sizing: border-box;
		font-size: 16px !important;
		line-height: 1.5em;
		word-break: normal;
	}
	.infoDetail h1{
		font-size: 18px;
		margin-top: 20px;
	}
	.infoMail {
		margin: 15px 0;
	}
	.infoMail a {
		color: #037;
	}
	
	.infoMail a:hover {
		color: #c33
	}
	.infoall{
		display: flex;
		align-items: flex-start;
		margin-bottom: 10px;
	}
	.infoNum{
		margin-right: 5px;
	}
}

/* 针对中等屏幕的样式 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.peopleInfoContent {
		width: 100%;
		height: auto;
		
	}
	.infoContent{
		width: 100%;
	}
	.infoLeft{
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin-bottom: 15px;
	}
	.infoImg{
		width: 100%;
		height: auto;
		position: relative;
	}
	.infoImg span{
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 3px 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(0, 0, 0, .6);
		color: #fff;
		font-size: 16px;
	}
	.infoImg img{
		width: 100%;
	}
	.infoDetail{
		flex:1;
		height: auto;
		padding-left: 30px;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 2em;
	}
	.infoDetail h1{
		font-size: 18px;
		margin-top: 20px;
	}
	.infoMail {
		margin: 15px 0;
	}
	.infoMail a {
		color: #037;
	}
	
	.infoMail a:hover {
		color: #c33
	}
	.infoall{
		display: flex;
		align-items: flex-start;
		margin-bottom: 10px;
	}
	.infoNum{
		margin-right: 5px;
	}
}

/* 针对小屏幕的样式 */
@media screen and (max-width: 767px) {
	.peopleInfoContent {
		width: 100%;
		height: auto;
		
	}
	.infoContent{
		width: 100%;
	}
	.infoLeft{
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin-bottom: 15px;
	}
	.infoImg{
		width: 100%;
		height: auto;
		position: relative;
	}
	.infoImg span{
		position: absolute;
		bottom: 0;
		right: 0;
		padding: 3px 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: rgba(0, 0, 0, .6);
		color: #fff;
		font-size: 16px;
	}
	.infoImg img{
		width: 100%;
	}
	.infoDetail{
		flex:1;
		height: auto;
		padding-left: 20px;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 2em;
	}
	.infoDetail h1{
		font-size: 18px;
		margin-top: 20px;
	}
	.infoMail {
		margin: 15px 0;
	}
	.infoMail a {
		color: #037;
	}
	
	.infoMail a:hover {
		color: #c33
	}
	.infoall{
		display: flex;
		align-items: flex-start;
		margin-bottom: 10px;
	}
	.infoNum{
		margin-right: 5px;
	}
	.hr{
		height: 50px;
		display: block !important;
	}
}