@charset "UTF-8";
.famous-doctors-bar {
  padding: 0 10vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.famous-doctors-bar > div:nth-of-type(1) {
  position: relative;
  top: 20px;
  left: 40px;
}
.famous-doctors-bar img {
  position: relative;
  top: 20px;
  right: 40px;
  width: 30px;
  height: 25px;
}

.famous-doctors {
  padding: 0 100px;
  position: relative;
  margin-bottom: 60px;
}
.famous-doctors > div:nth-of-type(1) {
  font-size: 40px;
  color: var(--font-color);
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
}
.famous-doctors > div:nth-of-type(2) {
  padding: 0 7vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: white;
  font-size: 18px;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(1) > button {
  background-color: var(--font-color);
  padding: 5px 15px;
  margin: 0 5px;
  border: none;
  color: white;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(1) > button:hover {
  background-color: rgb(251, 196, 51);
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(1) > button.selected {
  background-color: rgb(251, 196, 51);
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(2) > input {
  width: 275px;
  height: 100%;
  border: 1px solid rgb(171, 171, 171);
  background-color: transparent;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(2) > button {
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  color: white;
  background-color: var(--font-color);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.famous-doctors > div:nth-of-type(2) > div:nth-of-type(2) > button img {
  width: 20px;
  height: 20px;
 margin-right: 6px;
}
.famous-doctors > div:nth-of-type(3) {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  --min-height:105px;
}
.famous-doctors > div:nth-of-type(3) > div {
  background-color: white;
  box-shadow: inset 0 0 3px rgba(129, 129, 129, 0.7);
  width: 295px;
  padding: 10px;
  margin: 15px;
}
.famous-doctors > div:nth-of-type(3) > div > div:nth-of-type(1) {
  text-align: center;
  font-size: 20px;
  color: var(--font-color);
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", serif;
  letter-spacing: 1px;
  border-bottom: 1px solid rgb(236, 236, 236);
  padding-bottom: 6px;
}
.famous-doctors > div:nth-of-type(3) > div > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  align-content: start;
  gap: 1px;
  min-height: var(--min-height);
  max-height: var(--min-height);
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.famous-doctors > div:nth-of-type(3) > div > div:nth-of-type(2) > div {
  width: 33%;
  padding: 5px 0;
  color: black;
  font-size: 16px;
  text-align: center;
}
.famous-doctors > div:nth-of-type(3) > div > div:nth-of-type(2):hover {
  min-height: var(--min-height);
  max-height: calc(var(--min-height) * 2);
  overflow: auto;
  scrollbar-width: none;
}

.famous-doctors-footer-background {
  width: 100%;
  background-color: rgb(231, 239, 252);
  padding: 30px 0 90px 0;
}