.people-List {
	display: flex;
	column-gap: 40px;
	row-gap: 30px;
	flex-wrap: wrap;
}

.people-List .people-item {
	width: 110px;
	height: 155px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.people-List .people-item:hover {
	background-image: url(../img/peopleSelect.png);
	background-size: 110% 110%;
	background-position-x: -5px;
	background-position-y: -5px;
	/* cursor: pointer; */
}

.people-List .people-item .people-top {
	width: 90%;
	height: 110px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.people-List .people-item .people-img {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px dashed #00a0e9;
	width: 90px;
	height: 90px;
}

.people-List .people-item .people-img img {
	border-radius: 50%;
}

.people-List .people-item .people-img img {
	width: 75px;
	height: 75px;
}

.people-List .people-item .people-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	height: 30px;
	line-height: 16px;
	margin-top: 5px;
}

.people-List .people-item .people-name {
	text-align: center;
	font-family: Microsoft YaHei, Microsoft YaHei;
	color: #0d0d0d;
}

.people-List .people-item .people-subtitle {
	text-align: center;
	font-family: Microsoft YaHei, Microsoft YaHei;
	color: #0d0d0d;
	display: none;
}

.people-List .people-item:hover .people-subtitle {
	display: block;
}

.person-lists {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 30px;
}

.person-list .person-items {
	display: flex;
	column-gap: 20px;
	row-gap: 20px;
	flex-wrap: wrap;
}

.person-list .person-item {
	width: 150px;
	height: 250px;
	margin-right: 30px;
}

.person-list .person-subtitle {
	font-size: 20px;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	margin-bottom: 15px;
	position: relative;
	left: 7px;
}

.person-list .person-item .person-img img {
	height: 210px;
	width: 150px;
	border-bottom-right-radius: 30%;
}

.person-list .person-item .person-name {
	font-family: Microsoft YaHei, Microsoft YaHei;
	margin-top: 10px;
	font-size: 16px;
	text-align: center;
}

.person-list .persons-item {
	width: 250px;
	height: 80px;
	background-color: #f6f9ff;
	padding: 10px 0 10px 40px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	line-height: 30px;
	margin-right: 50px;
}

.person-list .persons-name {
	font-size: 16px;
	font-weight: bolder;
}

.person-list .persons-subtitle {
	font-size: 12px;
	font-weight: bolder;
}

.major-list .major-name {
	color: #0093da;
	font-size: 18px;
	margin: 20px 0 10px 0;
	display: flex;
}
.major-name .icon {
	width: 28px;
	height: 28px;
	background-size: 100% 100%;
	margin-right: 5px;
	position: relative;
	top: -1px;
}
.alone-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 10px;
}

.alone-list .alone-item {
	width: 230px;
	height: 100px;
	padding: 10px 0;
	border-radius: 10px;
	display: flex;
	background-image: url(../img/aloneBack.png);
	background-size: 100% 100%;
	position: relative;
}
.alone-list .alone-item .jiantou {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 5px;
	right: 20px;
	background-image: url('../img/icon/xiangyoujiantou.png');
	background-size: 100%;
}

.alone-list .alone-item .line {
	width: 220px;
	height: 100%;
	position: absolute;
	bottom: 4px;
	margin-left: 5px;
	border-bottom: 4px solid #c1cad9;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}.alone-list .alone-item .line:hover {
	border-bottom: 4px solid #00aaff;
}
.alone-item .alone-itemLeft {
	width: 80px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	padding-left: 15px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.alone-item .alone-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: #0093da 1px dashed;
	display: flex;
	justify-content: center;
	align-items: center;
}

.alone-item img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.alone-item .alone-itemRight {
	width: 150px;
	padding: 5px 5px;
}

.alone-item .alone-itemRight .alone-name {
	font-size: 16px;
	font-weight: 600;
}

.alone-item .alone-itemRight .alone-link {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.person-list .person-item{
		zoom: 0.8;
	}
}