:root {
  --green: #239595;
  --blue: #3c6fcb;
}

body {
  background: #f6f6f6;
  font-size: 14px;
  font-family: 微软雅黑, Tahoma, Helvetica, Arial, sans-serif;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: var(--green);
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
  line-height: 2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.container {
  max-width: 1200px;
}

.top_bar {
  padding: 12px 0;
}

.top_bar .row {
  align-items: center;
}

.search {
  margin: 0 13px;
  width: 100%;
  height: 34px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #ebebeb;
}

.search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 34px;
}

.search_input {
  width: 70%;
  height: 28px;
  font-weight: 400;
  line-height: 28px;
  margin-left: 20px;
  font-size: 14px;
}

.search_input input {
  outline: none;
  border: none;
  padding: 0;
  width: 100%;
  color: #314b82;
}

.search_btn {
  width: 60px;
  height: 34px;
  background: var(--green);
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 0 10px 10px 0;
  margin: 0px 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 34px;
  cursor: pointer;
}

.search_btn button {
  outline: none;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}

/* 轮播图 */
.mySwiper {
  position: relative;
}

.mySwiper .img {
  width: 100%;
  padding-top: 33%;
  position: relative;
}

.mySwiper .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mySwiper .link {
  position: absolute;
  bottom: 50px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.mySwiper .link a {
  padding: 10px 40px;
  background: var(--green);
  color: #fff;
  border-radius: 5px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
}

.swiper-pagination-bullet-active {
  color: var(--green);
}

.swiper-pagination-bullet-active {
  background-color: var(--green);
}

.nav_bar {
  background-color: #fff;
}

.nav_bar_list ul {
  display: flex;
  justify-content: center;
}

.nav_bar_list ul li a {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 0px 50px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 60px;
}

.nav_bar_list ul li a:before {
  content: "";
  background-color: #000;
  height: 20px;
  width: 1px;
  color: #d4dbe4;
  position: absolute;
  top: 20px;
  left: 0;
}

.nav_bar_list ul li.active a {
  color: #fff;
  background-color: var(--green);
}

.nav_bar_list ul li:first-child a:before,
.nav_bar_list ul li.active a:before,
.nav_bar_list ul li.active+li a:before {
  display: none;
}

.nav_bar_list ul li.active a::after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0);
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-top: 9px solid var(--green);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.left_part_wrap {
  margin-top: 20px;
  background: #fff;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
  -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
}

.title {
  padding: 20px 20px 15px;
}

.title h3 {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #5b8989;
  color: var(--green);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
  font-weight: bold;
}

.title a {
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
}

.left_part,
.right_part {
  margin-top: 20px;
}

.left_part_wrap {
  padding: 20px 20px 15px;
}

.left_part_wrap .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-bottom: 20px;
}

.left_part_wrap .title h3 {
  float: left;
}

.left_part_wrap .title a {
  float: right;
}

.right_part_wrap {
  background: #fff;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
  -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .04), 0 0 2px 0 rgba(0, 0, 0, .04);
}

.map_area p {
  font-weight: bold;
  line-height: 2;
  text-decoration: underline;
  padding: 0px 20px;
  margin-bottom: 20px;
}

.device_area {
  height: 620px;
  overflow-y: scroll;
}

.device_list {
  padding: 0 20px;
}

.device_list ul li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
}

.device_list ul li:last-child {
  border-bottom: unset;
}

.device_list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device_list ul li .img {
  width: 48%;
  padding-top: 61%;
  position: relative;
}

.device_list ul li .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 首页 */
.outer_link ul {
  display: flex;
  justify-content: space-between;
}

.outer_link ul li {
  width: calc((100% - 40px)/3);
}

.outer_link a {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}

.outer_link a .link_box {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  padding: 0;
  text-align: center;
  background: #f7faff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .04), 0 0 10px 0 rgba(0, 0, 0, .04);
  -moz-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .04), 0 0 10px 0 rgba(0, 0, 0, .04);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .04), 0 0 10px 0 rgba(0, 0, 0, .04);
}

.outer_link a .link_box img {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 14px;
}

.outer_link a .link_box span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}

.doctorSwiper {
  padding: 10px 10px 40px;
}

.doctorSwiper .swiper-pagination-bullets {
  bottom: 0;
}

.doctor .doctor_box {
  box-shadow: 0 2px 14px 0 rgba(251, 183, 149, .2);
  border-radius: 10px;
  text-align: center;
  padding: 15px 10px;
}

.doctor_box .img {
  width: 80%;
  padding-top: 80%;
  position: relative;
  margin: 0 auto;
}

.doctor_box .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 100%;
}

.doctor .doctor_box .name {
  margin: 10px auto 0;
  display: block;
  color: #323232;
  font-size: 14px;
  font-weight: bold;
  padding: 0 5px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.doctor .doctor_box .grade {
  color: #969696;
  font-size: 12px;
  line-height: 20px;
  padding: 0 5px;
  margin-bottom: 10px;
}

.doctor .doctor_box .specialty {
  color: #333;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}


.doctor .doctor_box .specialty font {
  padding: 2px 2px 2px 5px;
  background-color: var(--blue);
  border-radius: 0 10px 10px 0;
  margin-right: 10px;
  color: #fff;
}

.specialized .top_wrap {
  padding-bottom: 0;
}

.specialized .tab_list ul {
  display: flex;
}

.specialized .tab_list ul li {
  float: left;
  position: relative;
  text-align: center;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 50px;
  cursor: pointer;
}

.specialized .tab_list ul li.active {
  border: 1px solid #bebfc1;
}

.specialized .tab_list ul li.active::after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0);
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-top: 9px solid #055ad7;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.specialized .tab_list ul li::before {
  content: "";
  background: #d4dbe4;
  height: 20px;
  width: 1px;
  color: #d4dbe4;
  position: absolute;
  top: 20px;
  left: 0;
}

.specialized .tab_list ul li:first-child::before {
  display: none;
}

.specialized .tab_content_item {
  display: none;
}

.specialized .tab_content_item.active {
  display: block;
}

.specialized .tab_content_item ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.specialized .tab_content_item ul li {
  width: calc((100% - 200px)/5);
  text-align: center;
  margin: 10px 20px;
}

.specialized .tab_content_item ul li img {
  padding: 10px;
  border-radius: 100%;
  background-color: #e5f2f8;
  width: 60px;
}

/* 科普视频页面 */
.video_tab{
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
}
.video_tab ul {
  display: flex;
  justify-content: flex-start;
}

.video_tab ul li {
  padding: 10 20px;
  margin-right: 20px;
  font-size: 18px;
  position: relative;
  color: #000;
}
.video_tab ul li a{
  color: #000;
}
.video_tab ul li.active::after{
  content: "";
  position: absolute;
  bottom: -12px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: -webkit-linear-gradient(161deg,#3255ed,#2d8aed);
  background: -webkit-linear-gradient(289deg,#3255ed,#2d8aed);
  background: -moz-linear-gradient(289deg,#3255ed 0,#2d8aed 100%);
  background: -o-linear-gradient(289deg,#3255ed 0,#2d8aed 100%);
  background: linear-gradient(161deg,#3255ed,#2d8aed);
  opacity: .8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}


.video_list ul li {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;

}

.video_list ul li:last-child {
  border-bottom: unset
}

.video_list ul li a {
  display: flex;
  justify-content: space-between;
}

.video_list ul li .img {
  width: 100px;
  padding-top: 100px;
  position: relative;

}

.video_list ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.video_list ul li .img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #ffffffa8;
}

.video_list ul li .text {
  width: calc(100% - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.video_list ul li .text span {
  font-size: 14px;
  color: #333;
}

.video_doctor .doctor_box a{
  display: flex;
}

.video_doctor .doctor_box .img{
  width: 40%;
  padding-top: 40%;
}
.doctor_box .view_more {
  color: var(--blue);
  margin-top: 20px;
}
/* 医院介绍页面 */
.address h5 {
  font-size: 18px;
  font-weight: bold;
}

.address p {
  margin-bottom: 20px;
}

.announcement .intro_content {
  min-height: 100px;
}

.intro p {
  margin: 10px 0;
}

.expert_wrap {
  margin-top: 20px;
  border: 1px solid #f0f0f0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.expert_filter {
  padding: 20px 20px;
  background-color: #f5f6fa;
  font-size: 16px;
}

.expert_filter_row {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.expert_filter_condition {
  width: 33%;
  float: left;
  cursor: pointer;
  position: relative;
}

.filter_condition_list {
  display: none;
  width: 100%;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, .2);
  border-radius: 6px;
  position: absolute;
  top: 30px;
  background-color: #fff;
  z-index: 999;
}

.filter_condition_list .arrow {
  position: absolute;
  top: -12px;
  left: 90px;
  width: 30px;
  height: 12px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAANCAYAAADMvbwhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFGmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNi4wLWMwMDIgNzkuMTY0NDYwLCAyMDIwLzA1LzEyLTE2OjA0OjE3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMiAoTWFjaW50b3NoKSIgeG1wOkNyZWF0ZURhdGU9IjIwMjItMDEtMDVUMTM6MzE6MDgrMDg6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIyLTAxLTA1VDEzOjMxOjU1KzA4OjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDIyLTAxLTA1VDEzOjMxOjU1KzA4OjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjdiNDg0MzA5LTdiNjctNDk3OS04NWNkLTNmMjFlZjA0ZjI5MyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3YjQ4NDMwOS03YjY3LTQ5NzktODVjZC0zZjIxZWYwNGYyOTMiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo3YjQ4NDMwOS03YjY3LTQ5NzktODVjZC0zZjIxZWYwNGYyOTMiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjdiNDg0MzA5LTdiNjctNDk3OS04NWNkLTNmMjFlZjA0ZjI5MyIgc3RFdnQ6d2hlbj0iMjAyMi0wMS0wNVQxMzozMTowOCswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKE1hY2ludG9zaCkiLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rvcnk+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+FGRfjAAAAOlJREFUOI2tkkEKwjAQRSd2I0iP4hnEk6h04bn0LKE3aC8hBKGU6SLku9DWgE0yqX3QVYbMI30KAI0opUhIahCJ8/eQt3sj3Twjoeq63jLzseu6Q9M0O/8s+1YA0yeUUERUMPMJwBNfHsMwXImo8ObkuzNExss3zHwG4DADM1/o/dJJmSUik4QxZg+gn5P40Btj9hKZxSJa69I510YkAADOuVZrXa4tMnVhrb2nJEastTdK9JIj4ndRSSVGmLmiyC+SiuR0ESLaS5aItIsQsV4kIou6CBHqJSXyVxch5nqJiazRRYifXvzdL6RsMH4tnUxOAAAAAElFTkSuQmCC) no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.filter_condition_list.time .arrow {
  left: 45%;
}

.filter_condition_list .btn_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAAB65masAAAB/lBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8FWtcGW9cHW9cIXNcJXdcLXtgNX9gOYNgPYdgQYdgRYtkSY9kTY9kVZdkdatogbNsocdwpcdwrc91Vj+Nrnedtn+dvoOhwoehyouh0o+h2pel4pul6p+l7qOl8qOqBrOqOtOyQte2Rtu2St+2Tt+2UuO2Vue6Xuu6Yu+6Zu+6avO6bve+cvu+dvu+ev++fwO+gwO+hwfCiwvCjwvCkw/ClxPCmxPCnxfGoxvGpxvGqx/GryPGsyPGuyfKxy/K80/S90/S/1PTA1fTC1vXD1/XF2PXG2fXI2vbJ2/bO3/f////5REa+AAAAX3RSTlMADRsdHh8gISMkJSYnLi8xMzQ1Njc4OTo7PD0+P0BBQkNERUZJSktMV1teX2BiZGZnaWttg6ChsLK5vcDByM3O0NHU1tve3+Dh4uPk5efo6u7v8PHy8/T19vf4+fr9/nPmtUUAAAIVSURBVDjL3dR3UxNRFAXwtSI2kI6JoQk27B0LKljABtkaMXsX7KIoKFixIQoBAiGAaOwNz7f0bgIzL5vyAXh/nvnN7Jt7zz5Jmn+nsrbh4KrEeOWBi8c2i0Ep+LRscLpCxc6rheQwnt/pR0tVvCtWMX2vF3VCdBz3iV45pEvFuEUdUIRsL760OaVbw5hFFESNABc2IcLyNS5VzkXrdATZBWCsFj+zphmf4mSJjhF2wzDK4i+e48XHVqI3s7LUwBCRFYTucY4i14sPMbleksoNBNiFoLkTh5srY4plH8sKHwaIWsNQ1ybbTp6MyZj04R27KShFyfeYL2PCsiX6idqmIRek2niBgjDLt33sIvDmpe4GL5eXwefKZzTnpGtRkY6QDQNoyk5bty1+9NrwJXR3OlftxzOiq9GVaK7UbqsfT4mufbXLMJJGbjPxhOj6N2DUIms0xbglabuJx+y+47yGIC9wDGpxMrfDxCOiGz9wboVLw3B01WqS1ew00cPuJ84u59Lq0fKMQyl0ul1AN9HNX2jMnK2tXZ8wFMcad8N8SHTrNxqWxQJPTE5AzhddFcwH7P7gTMZcVGJgkCs0CTlTgLX2nG//xemlwr9u4D3LCPYLUMVdap/BqSXiZ8oMu5aduCBkRxDq+oeTi+MvXu7DUMcLHBUiz2V+OuoXOUfBvwSfjWKUta9mz4LE4WYdUk5smodv8n8es9qBthqCEQAAAABJRU5ErkJggg==) no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  cursor: pointer;
}


.filter_condition_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px;
}

.filter_condition_list ul li a{
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0;
  padding: 0 10px;
  line-height: 26px;
  color: #000;
  font-size: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}

.filter_condition_list ul li a.on {
  background-color: var(--green);
  color: #fff;
}

.filter_condition_list ul li.on a {
  color: #fff;
}

.filter_condition_list.active {
  display: block;
}

.expert_filter_condition span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.expert_filter_condition span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAOCAMAAAACJixMAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAADgAAAAANlRePAAAANlBMVEUAAACYmJiXl5eYmJiWlpaXl5eXl5eWlpaXl5eXl5eYmJiWlpaXl5eYmJiWlpaWlpaWlpaWlpbst9rJAAAAEXRSTlMASmVtcHN2en2Ag4aJipLq+yApWWEAAABOSURBVBgZbcGLEoAQFAXAI28qzv//bMYYKXcXd6Wg3igUFRwUHYCmQKMx3Bh0lj8Wg+OHw+S58FgETgEfkUPET2KXsMlsMgQXeUKkFF4PSLAMhuX+STgAAAAASUVORK5CYII=) no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
}

.expert_list {
  padding: 20px;
}

.expert_list ul li {
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.expert_list ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: unset;
}

.expert_list ul li a {
    position: relative;
    display: block;
}

.expert_list ul li a .img {
  width: 80px;
  float: left;
  margin-right: 20px;
}

.expert_list ul li a .img img {
  width: 100%;
}

.expert_list ul li a .text {
  width: calc(100% - 200px);
  color: #646464;
  float: left;
  margin-right: 20px;
}

.expert_list ul li a .text>div {
  margin-bottom: 10px;
}

.expert_list ul li a .name {
  font-size: 20px;
}

.expert_list ul li a .grade {
  font-size: 16px;
  margin-left: 10px;
}

.expert_list ul li a .department {
  font-size: 16px;
  margin-left: 10px;
}

.expert_list ul li a .disease span {
  display: block;
  float: left;
  padding: 7px 8px;
  background: #edf5ff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #556996;
  line-height: 10px;
  margin-right: 15px;
}

.expert_list ul li a .specialized {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 14px;
  max-height: 52px;
}

.expert_list ul li a .view_more {
  width: 80px;
  height: 35px;
  line-height: 35px;
  /*border: 1px solid var(--blue);*/
  color: #fff;
  background-color: var(--green);
  border-radius: 4px;
  text-align: center;
  float: right;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.message_form input {
  border: #efefef solid 1px;
  background-color: #f9f9f9;
}

.message_form textarea {
  border: #efefef solid 1px;
  background-color: #f9f9f9;
}

.message_form {
  text-align: center;
}

.message_form button {
  background-color: var(--green);
  color: #fff;
}

.expert_top {
  background-color: var(--green);
  padding: 40px 0;
  margin-top: 20px;
}

.expert_bottom {
  margin-top: -40px;
}

.expert_top .expert_intro_wrap {
  position: relative;
  padding: 20px;
  background: hsla(0, 0%, 100%, .12);
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, .04), 0 1px 10px 0 rgba(0, 0, 0, .08);
  -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, .04), 0 1px 10px 0 rgba(0, 0, 0, .08);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .04), 0 1px 10px 0 rgba(0, 0, 0, .08);
}

.expert_intro_wrap .img {
  float: left;
  width: 130px;
  padding-top: 130px;
  position: relative;
  margin-right: 20px;
}

.expert_intro_wrap .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 100%;
}

.expert_intro_wrap .text {
  float: left;
  font-size: 18px;
  font-weight: 500;
  margin-right: 12px;
  color: #fff;
}

.expert_intro_wrap .text .name {
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}


.expert_intro_wrap .qrcode {
  width: 100px;
  float: right;
  padding: 10px;
  background-color: hsla(0, 0%, 100%, .08);
  text-align: center;
  color: #fff;
  font-size: 12px;
}

/* .expert_info {
  margin-top: -25px;
} */

.expert_info h5 {
  font-size: 18px;
  font-weight: 500;
  color: #323232;
  padding-left: 11px;
  position: relative;
  width: 50px;
  float: left;
  margin-right: 20px;
  line-height: 1.5;
}

.expert_info h5::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background-color: var(--green);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.expert_info .p {
  width: calc(100% - 70px);
  float: right;
}

.expert_bottom .expert_title {
  padding-bottom: 20px;
  border-bottom: 1px solid #edeef4;
  margin-bottom: 20px;
}

.expert_bottom .expert_title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #323232;
  padding-left: 11px;
  position: relative;
  margin-right: 20px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;

}

.expert_bottom .expert_title h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background-color: var(--green);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.schedule_list ul {
  display: flex;
  justify-content: space-between;
}

.schedule_list ul li {
  width: calc((100% - 100px)/4);
}

.schedule_list ul li p {
  padding: 10px 0;
  background: #f4f7fd;
  text-align: center;
}

.department_item{
    border: 1px solid #ffebd7;
    border-radius: 8px;
    padding: 20px 20px 0;
    margin-bottom: 20px;
}
.department_item h3{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.disease_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.disease_list ul li{
    width: calc((100% - 30px)/4);
    margin: 0 10px 20px 0;
}
.disease_list ul li:nth-child(4n){
    margin-right: 0;
}
.disease_list ul li a{
    display: block;
    border-radius: 4px;
    padding: 16px 0;
    color: #000;
    font-size: 16px;
    background: #f6f6f6;
    text-align: center;
}
/* 底部 */

.friend_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  margin-top: 20px;
  background-color: var(--green);
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

footer .row {
  align-items: center;
}

footer .friend_link {
  margin-bottom: 20px;
}

footer .contact {
  position: relative;
}

footer .qrcode {
  width: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
}