@charset "UTF-8";

@media screen and (max-width: 400px) {
  .doctors-List-title h2 {
    text-align: left !important;
  }
  .doctors-List-title h2::after {
    left: 10% !important;
  }
}
.doctors {
  padding-bottom: 45px;
  padding-top: 50px;
}
.doctors-List-title h2 {
  position: relative;
  color: var(--Brand-Blue, #005bab);
  text-align: center;
  /* 桌面版/PC-H2 */
  font-family: "Noto Sans HK";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}
.doctors-List-title h2::after {
  content: "";
  position: absolute;
  width: 61px;
  height: 2px;
  background-color: #005bab;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.doctors-List-filter {
  margin-top: 20px;
  gap: 10px;
}
.doctors-List-filter-menu {
  box-shadow: 0px 0px 66.9px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.doctors-List-filter-menu .selectCenter {
  padding: 10px 20px;
  color: var(--Brand-Blue, #005bab);
  font-family: "Noto Sans HK";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 100px;
  border: 3px solid var(--Brand-Blue, #005bab);
  background: var(--White, #fff);
  position: relative;
}
.doctors-List-filter-menu .selectCenter::after {
  position: absolute;
  content: "";
  background: url("../fonts/menu.svg") no-repeat;
  background-size: contain;
  width: 26.838px;
  height: 16.765px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.doctors-List-filter-menu-item li a {
  display: block;
  font-family: "Noto Sans HK";
  font-size: 14px;
  line-height: normal;
  letter-spacing: 2.4px;
}
.doctors-List-filter-menu-item li:nth-child(n + 5) {
  display: none;
}
.doctors-List-filter .input-group {
  max-width: 123px;
  width: 123px;
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 30px;
}
.doctors-List-filter .input-group input {
  padding: 7px 11px;
  color: var(--Brand-Blue, #005bab);
  font-family: "Noto Sans HK";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 100px;
  border: 1.68px solid var(--Brand-Blue, #005bab);
  opacity: 0.95;
  background: var(--White, #fff);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  position: relative;
}
.doctors-List-filter .input-group input::-moz-placeholder {
  color: var(--Brand-Blue, #005bab);
}
.doctors-List-filter .input-group input::placeholder {
  color: var(--Brand-Blue, #005bab);
}
.doctors-List-filter .input-group form button {
  background: url("../images/search.svg") no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  animation: searchIcon 1s linear infinite;
}
.doctors-List {
  margin-top: 16px;
  padding-left: 15px;
  padding-right: 15px;
  gap: 30px;
}
.doctors-List-item {
  gap: 10px;
  max-width: 688px;
  padding: 10px;
  border-radius: 10px;
  background: var(--White, #fff);
  box-shadow: 0px 0px 66.9px 0px rgba(0, 0, 0, 0.05);
  box-shadow: -7px -7px 25px #fff, 7px 7px 25px #d3d3d3,
    inset 1px 1px 2px rgba(0, 0, 0, 0.02);
}
.doctors-List-item-img {
  width: 30vw;
  max-width: 186px;
  height: 100%;
  max-height: 200px;
  background-image: url("../images/dotorlist-phonebg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.doctors-List-item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}
.doctors-List-item-content {
  max-width: 300px;
  flex: 1;
}
.doctors-List-item-content p {
  color: var(--Grey-Deep, #4d4d4d);
  text-align: justify;
  font-family: "Noto Sans HK";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.doctors-List-item-content-intro em {
  list-style: normal;
  color: var(--Grand-Light-Blue, #6096c5);
  font-family: "Noto Sans HK";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
}
.doctors-List-item-content-intro div>i {
  color: var(--Brand-Blue, #005bab);
  list-style: normal;
  font-family: "Noto Sans HK";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.5px;
}
.doctors-List-item-content-intro>div span {
  color: var(--Brand-Blue, #005bab);
  font-family: "Noto Sans HK";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 120%;
}
.doctors-List-item-content-suject {
  margin-top: 10px;
}
.doctors-List-item-content-suject h3 {
  color: var(--Brand-Blue, #005bab);
  font-family: "Noto Sans HK";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

@keyframes searchIcon {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@media screen and (min-width: 992px) {
  .doctors {
    background-image: url(../images/section-overview-bgline.svg);
    background-repeat: no-repeat;
    background-position: 100% 200px;
  }
  .doctors-List-title h2 {
    position: relative;
    color: var(--Brand-Blue, #005bab);
    text-align: center;
    /* 桌面版/PC-H2 */
    font-family: "Noto Sans HK";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3px;
  }
  .doctors-List-title h2::after {
    content: "";
    position: absolute;
    width: 61px;
    height: 2px;
    background-color: #005bab;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
  }
  .doctors-List-filter {
    gap: 40px;
    margin-top: 0;
  }
  .doctors-List-filter-menu{
    border: none !important;
  }
  .doctors-List-filter-menu-item{
    border-radius: 15px;
    overflow: hidden;
  }
  .doctors-List-filter-menu .selectCenter {
    padding: 14px 30px;
    color: var(--Brand-Blue, #005bab);
    font-family: "Noto Sans HK";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3px;
    border-radius: 100px;
    border: 3px solid var(--Brand-Blue, #005bab);
    background: var(--White, #fff);
    position: relative;
  }
  .doctors-List-filter-menu .selectCenter::after {
    position: absolute;
    content: "";
    background: url("../fonts/menu.svg") no-repeat;
    background-size: contain;
    width: 38.838px;
    height: 19.765px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
  .doctors-List-filter-menu-item li {
    border-right:1px solid var(--Grand-Grey, #E8E0D5);;
  }
  .doctors-List-filter-menu-item li:nth-child(4){
    border: none;
  }
  .doctors-List-filter-menu-item li a {
    display: block;
    color: var(--Brand-Blue, #005BAB);
    font-family: "Noto Sans HK";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    position: relative;
  }

  .doctors-List-filter-menu-item li:last-child a::after {
    content: none;
  }
  .doctors-List-filter .input-group {
    max-width: 220px;
    width: 220px;
    position: relative;
  }
  .doctors-List-filter .input-group input {
    padding: 14px 20px;
    color: var(--Brand-Blue, #005bab);
    font-family: "Noto Sans HK";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
    border-radius: 100px;
    border: 3px solid var(--Brand-Blue, #005bab);
    opacity: 0.95;
    background: var(--White, #fff);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  .doctors-List-filter .input-group input::-moz-placeholder {
    color: var(--Brand-Blue, #005bab);
  }
  .doctors-List-filter .input-group input::placeholder {
    color: var(--Brand-Blue, #005bab);
  }
  .doctors-List-filter .input-group form button {
    background: url("../images/search.svg") no-repeat;
    background-size: contain;
    width: 28px;
    height: 30px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
  }
  .doctors-List {
    padding-left: 0;
    padding-right: 0;
    gap: 30px;
  }
  .doctors-List-item {
    gap: 28px;
    max-width: 645px;
    width: 45vw;
    padding: 20px;
    transition: all 0.6s ease;
    border-radius: 20px;
    background: var(--White, #fff);
    box-shadow: 0px 0px 66.9px 0px rgba(0, 0, 0, 0.05);
  }
  .doctors-List-item-img {
    max-width: 256px;
    width: 13.33vw;
    max-height: 353px;
    height: 18.385vw;
    border-radius: 10px;
    background-image: url("../images/dotorlist-pcBg.webp");
  }
  .doctors-List-item-img img {
    /* height: 100%; */
  }
  .doctors-List-item-content {
    max-width: 355px;
  }
  .doctors-List-item-content p {
    color: var(--Grey-Deep, #4d4d4d);
    text-align: justify;
    font-family: "Noto Sans HK";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
  }
  .doctors-List-item-content-intro em {
    font-family: "Noto Sans HK";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
  }
  .doctors-List-item-content-intro> div i {
    font-size: 30px;
    letter-spacing: 3px;
  }
  .doctors-List-item-content-intro >div span {
    color: var(--Brand-Blue, #005bab);
    font-family: "Noto Sans HK";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
  }
  .doctors-List-item-content-suject {
    margin-top: 30px;
  }
  .doctors-List-item-content-suject h3 {
    color: var(--Brand-Blue, #005bab);
    font-family: "Noto Sans HK";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
  }
  .doctors-List-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}
