.container {
  padding: 16rpx;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.doctor-card {
  background-color: white;
  border-radius: 12rpx;
  padding: 24rpx;
  margin-bottom: 16rpx;
  box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
}

.doctor-header {
  display: flex;
  margin-bottom: 16rpx;
}

.avatar {
  width: 120rpx;
  height: 120rpx;
  border-radius: 50%;
  margin-right: 16rpx;
  position: relative;
  border: 2rpx solid #e6f7ff;
}

.avatar::after {
  content: "在线";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #52c41a;
  color: white;
  font-size: 20rpx;
  padding: 4rpx 8rpx;
  border-radius: 12rpx;
  border: 2rpx solid white;
}

.doctor-info {
  flex: 1;
}

.doctor-name {
  font-size: 32rpx;
  font-weight: bold;
  margin-bottom: 8rpx;
  color: #333;
}

.hospital-info {
  display: flex;
  align-items: center;
  margin-bottom: 8rpx;
}

.level-tag {
  background-color: #e6f7ff;
  color: #1890ff;
  font-size: 24rpx;
  padding: 4rpx 8rpx;
  border-radius: 4rpx;
  margin-right: 8rpx;
}

.hospital-name {
  font-size: 24rpx;
  color: #666;
}

.special-tags {
  display: flex;
  margin-top: 8rpx;
}

.special-tag {
  font-size: 20rpx;
  padding: 4rpx 8rpx;
  border-radius: 4rpx;
  margin-right: 8rpx;
}

.special-tag:nth-child(1) {
  background-color: #fff2e8;
  color: #fa8c16;
}

.special-tag:nth-child(2) {
  background-color: #f6ffed;
  color: #52c41a;
}

.doctor-bio {
  font-size: 24rpx;
  color: #666;
  line-height: 36rpx;
  margin-bottom: 16rpx;
  text-align: justify;
  position: relative;
}

.bio-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8rpx;
}

.expand-btn {
  color: #1890ff;
  font-size: 24rpx;
  cursor: pointer;
  display: inline-block;
  margin-top: 8rpx;
}

.doctor-stats {
  display: flex;
  font-size: 24rpx;
  color: #999;
  margin-bottom: 16rpx;
  flex-wrap: wrap;
}

.doctor-stats text {
  margin-right: 24rpx;
  margin-bottom: 8rpx;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
}

.tag {
  background-color: #f0f9ff;
  color: #1890ff;
  font-size: 24rpx;
  padding: 8rpx 16rpx;
  border-radius: 16rpx;
  margin-right: 12rpx;
  margin-bottom: 12rpx;
}