.doctor-rank {
	width: 294px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
}
.doctor-rank .title {
	width: 100%;
	height: 50px;
	background: #f3f3f3;
	padding-left: 16px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	position: relative;
}
.doctor-rank .title > img {
	width: 40px;
	height: 38px;
	position: absolute;
	right: 0;
	top: -5px;
}
.doctor-rank .title > span {
	font-size: 18px;
	font-weight: 500;
	color: #333333;
}
.doctor-rank .doctor-list {
	padding: 0px 16px;
}
.doctor-rank .doctor-list .doctor-list-item {
	padding: 14px 0px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
}
.doctor-rank .doctor-list .doctor-list-item:not(:last-child) {
	border-bottom: 1px solid #f3f3f3;
}
.doctor-rank .doctor-list .doctor-list-item .rank-number {
	width: 20px;
	text-align: center;
	margin-right: 5px;
}
.doctor-rank .doctor-list .doctor-list-item .rank-number img {
	width: 24px;
	height: 24px;
}
.doctor-rank .doctor-list .doctor-list-item > img {
	width: 38px;
	height: 38px;
	margin-left: 7px;
	border-radius: 50%;
}
.doctor-rank .doctor-list .doctor-list-item .name {
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	margin-left: 10px;
	min-width: 70px;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.doctor-rank .doctor-list .doctor-list-item .hospital {
	font-size: 12px;
	font-weight: 400;
	color: #999999;
	margin-left: 5px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.doctor-rank .doctor-list .doctor-list-item:hover .name {
	color: #ff5370;
}
