/* <!-- 5.热门医生 --> */
.popularDoctors {
  width: 100%;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
        gap: 10px; */
  grid-template-columns: repeat(3, auto);
  /* justify-content: flex-start; */
  margin: 20px 0;
}
.rm-card {
  position: relative;
  display: flex;
  width: 310px;
  height: 140px;
  justify-content: space-around;
  align-items: center;
  margin: 0px 20px;
  border: 1px solid #fff;
  padding: 8px;
  box-sizing: border-box;
}
.rm-card .doctor {
  width: 115px;
  height: 105px;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.rm-card .doctor img {
  width: 115px;
  height: 105px;
  border: none;
  border-radius: 0;
  -webkit-filter: blur(20px);
}
.rm-lightgrayfont {
  font-size: 14px !important;
  color: #0462C1 !important;
}
.rm-lightgrayfont p {
  font-size: 14px !important;
  color: #666 !important;
}
.authentication {
  position: absolute;
  top: 0;
  right: 0;
}
.rm-card:hover {
  border-radius: 10px;
  border: 1px solid #0462C1;
}
.hoverlink {
  margin-top: 15px;
}
.doctorDescribe {
  margin-left: 10px;
  width: calc(100% - 80px);
}
.doctorDescribe .date {
  color: #999;
}
.threeLines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #0462C1 !important;
}
.threeLines span {
  color: #666;
}
.physician {
  display: flex;
  align-items: flex-end;
}
.physician .name {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
}
.physician .position {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}
