/* 普通详情 */
.article {
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  border-radius: 3px;
  padding: 50px 90px;
  color: #333;
  font-size: 18px;
  box-sizing: border-box;
}
.article .title {
  color: #333;
  font-size: 14px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
.article .title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.article-con p {
    /* text-indent: 2em; */
    line-height: 2em;
    font-size: 18px;
    font-family: 'microsoft yahei';
    color: #333;
    margin: 0 0 1em 0;
}

.article-con p img {
    max-width: 1020px;
}

/* 专家详情 */
.expert-detail {
  color: #333;
  margin-top: 100px;
  font-size: 16px;
  margin-bottom: 60px;
}
.expert-detail .pic {
  float: left;
  width: 275px;
  /* height: 413px; */
  padding: 5px;
  margin-right: 45px;
  border-radius: 5px;
  background-color: #fff;
  margin-top: -130px;
  -moz-box-shadow: 0px 1px 3px #edf4fb;
  -webkit-box-shadow: 0px 1px 3px #edf4fb;
  box-shadow: 0px 1px 3px #edf4fb;
}
.expert-detail .pic img {
  width: 275px;
  /* height: 413px; */
  object-fit: covers;
  border-radius: 5px;
  overflow: hidden;
}
.expert-detail .intro {
  float: left;
  width: 690px;
}
.expert-detail .name {
  font-size: 36px;
  color: #007cc5;
  margin-bottom: 30px;
}
.expert-detail .con {
  margin-top: 50px;
}
.expert-detail .sub-title {
  font-size: 24px;
  margin-bottom: 20px;
}

/* 出诊详情 */
.visit-detail {
  font-size: 14px;
  color: #000;
}
.visit-detail .title {
  border-bottom: none;
  margin-bottom: 0;
}
.visit-table {
  width: 100%;
  border-right: 1px solid #88b6e9;
  border-bottom: 1px solid #88b6e9;
}
.visit-table .head {
  background-color: #5fa7f7;
  color: #fff;
  font-size: 16px;
}
.visit-table .head th {
  border-right: 1px solid #88b6e9;
  padding: 5px 0;
}
.visit-table .sub-head {
  background-color: #cde5ff;
  color: #545454;
  font-size: 14px;
}
.visit-table .sub-head th {
  padding: 5px 0;
  width: 50px;
  border-left: 1px solid #88b6e9;
}
/* .visit-table .sub-head th:nth-child(even) {
  border-left: 1px solid #88b6e9;
} */

.visit-table tbody > tr > th:first-child {
  width: 100px;
  color: #005fc5;
  font-size: 14px;
  font-weight: bold;
}
/* .visit-table tbody th:nth-child(even) {
  border-left: 1px solid #88b6e9;
} */
.visit-table tbody th {
  padding: 15px 5px;
  font-size: 14px;
  border-left: 1px solid #88b6e9;
   border-top: 1px solid #88b6e9;
}

.visit-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.visit-table tbody tr:nth-child(even) {
  background-color: #f0f7fe;
}
.visit-table tbody a:hover {
  color: #005fc5;
  cursor: pointer;
}

/* 专家信息弹框 */
.expert-dialog {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
}
.expert-dialog .wrap {
  width: 990px;
  min-height: 325px;
  background: #007dc6 url(../img/expert-dialog-bg.png) no-repeat 100% top;
  margin: auto;
  margin-top: 50px;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.expert-dialog .info-wrap {
  float: left;
  width: 750px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}
.expert-dialog .pic {
  float: left;
  width: 205px;
  height: 246px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 30px;
}
.expert-dialog .pic img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.expert-dialog .info {
  float: left;
  width: 455px;
  max-height: 400px;
  overflow: auto;
}
.expert-dialog .info h2 {
  font-size: 24px;
  margin-bottom: 5px;
}
.expert-dialog h3 {
  font-size: 16px;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.expert-dialog .code {
  float: left;
  color: #fff;
  margin-left: 45px;
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
}
.expert-dialog .code img {
  width: 140px;
}
.expert-dialog .close {
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  background-color: #007dc6;
  color: #fff;
  margin: auto;
  text-align: center;
  font-size: 16px;
  border-radius: 100px;
  margin-top: 20px;
  cursor: pointer;
}
