.about-content-title {
  font-size: 0.8rem;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dddddd;
}
.about-content-title a {
  font-size: 0.43rem;
  font-weight: normal;
  color: #999;
}
.about-yyhj-img {
  position: relative;
  overflow: hidden;
}
.about-yyhj-img img {
  width: 100%;
  height: auto;
  display: block;
}
.list-nav-ul,
.about-ks {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.list-nav-ul li,
.about-ks li {
  width: 48%;
  background-color: #f5f5f5;
  line-height: 1.4rem;
  margin-bottom: 0.3rem;
  text-align: center;
}
.list-nav-ul li a,
.about-ks li a {
  display: block;
  width: 100%;
  height: 100%;
}
.list-nav-ul li.list-nav-active {
  border-bottom: 3px solid #740f0f;
}
.list-nav-ul li.list-nav-active a {
  color: #740f0f;
}
.list-about-content {
  margin-bottom: 1.4rem;
}
.list-about-content p.about-content-text {
  margin-bottom: 0.4rem;
  line-height: 1.8em;
  text-align: justify;
}
.about-content-img {
  margin-bottom: 0.8rem;
}
.about-content-img img {
  max-width: 100%;
}
.about-sb-img,
.about-hj-img {
  margin-bottom: 0.8rem;
}
/*医院环境*/
.about-content-hj {
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-content-hj li {
  width: 49%;
  text-align: center;
  margin-bottom: 0.6rem;
}
/* 图片查看器样式 */
.gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
/* 图片查看器样式 */
.image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10010;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-viewer.active {
  display: flex;
  opacity: 1;
}
.image-viewer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.image-viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.image-viewer-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.image-viewer-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.image-viewer-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.image-viewer-title {
  color: #fff;
  font-size: 0.7rem;
  margin-top: 0.8rem;
  text-align: center;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.image-viewer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.image-viewer-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transform: scale(1.1);
  border-color: #ffffff;
}
.image-viewer-nav {
  position: absolute;
  top: 60%;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}
.image-viewer-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.image-viewer-prev {
  left: 1rem;
}
.image-viewer-next {
  right: 1rem;
}
.image-viewer-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.6rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  z-index: 10001;
}
.image-viewer-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10002;
}
.loading-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 0.5rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 移动端优化 */
@media (max-width: 768px) {
  .image-viewer-container {
    padding: 0.5rem;
  }
  .image-viewer-content {
    max-width: 95%;
    max-height: 95%;
  }
  .image-viewer-img {
    max-height: 75vh;
  }
  .image-viewer-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }
  .image-viewer-nav {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
  .image-viewer-prev {
    left: 0.5rem;
  }
  .image-viewer-next {
    right: 0.5rem;
  }
  .image-viewer-title {
    font-size: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.6rem;
  }
  .image-viewer-counter {
    bottom: 0.5rem;
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
  }
}
/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
  .gallery-image:hover {
    transform: none;
    opacity: 1;
  }
  .image-viewer-nav,
  .image-viewer-close {
    background: rgba(255, 255, 255, 0.3);
  }
  .image-viewer-nav:active,
  .image-viewer-close:active {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0.95);
  }
}
/*当前位置*/
.position-content {
  margin: 3.2rem 0 0.5rem;
  padding: 0 0.6rem;
  color: #888;
}
.position-content a {
  margin-right: 5px;
  color: #888;
}
.position-content a:nth-child(n + 2) {
  margin-left: 5px;
}
/*文章内容*/
.article-title-content {
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e5e5e5;
}
.article-title-content h1 {
  line-height: 1.7em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-align: justify;
}
.article-title-content .article-title-msg span,
.article-title-content .article-title-msg span a {
  font-size: 0.45rem;
  color: #666;
}
.article-title-content .article-title-msg span:nth-child(1) {
  margin-right: 0.5rem;
}
.article-body-content p {
  line-height: 2em;
  margin-bottom: 0.5rem;
  text-align: justify;
}
.article-body-content p img {
  margin: 0 auto;
  display: block;
}
.article-body-content img {
  max-width: 100%;
  margin: 0 auto;
}
/*文章列表*/
.news-list-item {
  padding: 0.6rem 0 0.3rem;
}
.news-list-item li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e6e6e6;
}
.news-list-item li:last-child {
  border-bottom: none;
}
.news-list-item .news-list-text {
  width: 10.7rem;
}
.news-list-item .news-list-text p {
  font-size: 0.45rem;
  color: #666;
  margin-top: 0.2rem;
}
.news-list-item .news-list-text p span:nth-child(1) {
  margin-right: 0.2rem;
}
.news-list-item .news-list-text p span:nth-child(2) {
  margin-left: 0.2rem;
}
.news-list-item .news-list-img {
  display: block;
  width: 3.35rem;
  height: 2.225rem;
}
.news-list-item .news-list-img img {
  width: 100%;
  min-height: 100%;
}
/*医院荣誉*/
.about-yyhj-text {
  background-color: #f5f5f5;
  padding: 0.3rem;
  box-sizing: border-box;
  text-align: center;
}
.about-ry-title {
  font-size: 0.6rem;
  margin-bottom: 0.6rem;
}
.about-ry-title::before {
  content: "";
  display: block;
  float: left;
  margin-top: 0.2rem;
  width: 3px;
  height: 0.6rem;
  background: #b95a00;
  background-size: 100% 100%;
  margin-right: 0.3rem;
}
.fuwu-jcxz-title {
  font-size: 0.6rem;
  margin: 0.6rem 0;
  color: #b95a00;
}
/*投诉建议表单*/
.cone form {
  background: #f5f5f5;
  padding: 0.7rem 0.5rem 1rem;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
}
.cone form p {
  margin-bottom: 0.15rem;
}
.cone form p label {
  display: inline-block;
  height: 1.2rem;
  line-height: 1.2rem;
}
.clear {
  clear: both;
  overflow: hidden;
}
.cone form p input,
.cone form p select {
  /* float: left; */
  width: 100%;
  height: 1.5rem;
  background: #fff;
  line-height: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #ccc;
}
input[type="date"]::-webkit-datetime-edit {
  /* content: '起始时间'; */
  color: #ccc;
}
.form_btn input {
  display: block;
  width: 5rem;
  height: 1.45rem;
  line-height: 1.45rem;
  text-align: center;
  color: #fff;
  background: #ff9d00;
  border-radius: 0.125rem;
  font-family: microsoft yahei;
  border: none;
  outline: none;
}
input[type="button"],
input[type="submit"],
input[type="file"],
button {
  cursor: pointer;
  -webkit-appearance: none;
}
/*预约挂号*/
.weixin-guaho {
  margin: 1rem 0;
  justify-content: center;
}
.weixin-guaho div {
  width: 50%;
  text-align: center;
}
.weixin-guaho div img {
  width: 60%;
  margin: 0 auto;
  display: block;
}
.weixin-guaho div span {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.3rem;
}
/*科室介绍*/
.keshi-img-cont {
  margin-top: 1rem;
  justify-content: space-between;
}
.keshi-img-cont a {
  display: block;
  width: 28%;
}
.keshi-img-cont a img {
  margin: 0 auto;
}
.ks-tips {
  font-size: 0.45rem;
  color: #999;
  text-align: center;
  margin-top: 0.3rem;
}
/*专家团队导航*/
.doctor-nav-ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin-bottom: 0.8rem;
  padding: 0;
  list-style: none;
  /* 隐藏滚动条 */
  /* 兼容Firefox */
  scrollbar-width: none;
}
.doctor-nav-ul::-webkit-scrollbar {
  display: none;
}
.doctor-nav-ul li {
  flex: 0 0 auto;
  margin-right: 0.4rem;
}
.doctor-nav-ul li:last-child {
  margin-right: 0;
}
.doctor-nav-ul li a {
  display: block;
  padding: 0.4rem 0.8rem;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 0.2rem;
  font-size: 0.5rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.doctor-nav-ul li.active a {
  background-color: #662b19;
  color: #fff;
}
/*专家团队*/
.list-doctor-ul li {
  overflow: hidden;
  margin-bottom: 0.6rem;
  border-bottom: 1px dashed #e6e6e6;
  padding-bottom: 0.6rem;
}
.list-doctor-ul li .list-doctor-img {
  float: left;
  width: 34%;
}
.list-doctor-ul li .list-doctor-text {
  float: right;
  width: 63%;
}
.list-doctor-ul li .list-doctor-name {
  font-size: 0.6rem;
  color: #662b19;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.list-doctor-ul li .list-doctor-btn {
  display: flex;
  margin-top: 0.4rem;
}
.list-doctor-ul li .list-doctor-btn a {
  display: block;
  width: 40%;
  height: 1.3rem;
  line-height: 1.3rem;
  text-align: center;
  color: #fff;
  background: #cd4d00;
  border-radius: 0.2rem;
  font-family: microsoft yahei;
  border: none;
  outline: none;
  margin-right: 5%;
}
.list-doctor-ul li .list-doctor-btn a:last-child {
  margin-right: 0;
  background: #dbdbdb;
  color: #333;
}
.list-doctor-ul li:last-child {
  border-bottom: none;
}
/*新闻列表*/
/*医院新闻banner*/
.list-news_banner_content {
  width: 100%;
  height: 7.825rem;
  overflow: hidden;
}
.list-news_banner_content .swiper-slide {
  height: 7.825rem;
  width: 100%;
  float: left;
}
.list-news_banner_content .swiper-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.list-news_banner_content .swiper-slide a img {
  width: 100%;
  height: auto;
  min-height: 100%;
}
.list-news_banner_content .swiper-slide a p {
  position: absolute;
  display: block;
  width: 100%;
  line-height: 1.6rem;
  font-size: 0.54rem;
  color: #fff;
  box-sizing: border-box;
  padding: 0 0.5rem;
  margin-top: 0.2rem;
  bottom: 0;
  background-color: rgba(187, 97, 0, 0.8);
}
.list-news_banner_content .swiper-pagination {
  text-align: right;
  padding-right: 0.5rem;
  box-sizing: border-box;
}
.list-news_banner_content .swiper-pagination-bullet {
  background-color: #ffffff !important;
}
.list-news_banner_content .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 14px !important;
}
/*分页*/
.list-news-page {
  margin: 0.6rem auto;
  text-align: center;
  font-size: 0.4rem;
  color: #333;
}
.list-news-page a,
.list-news-page .page-status {
  display: inline-block;
  padding: 0 0.3rem;
  height: 0.9rem;
  line-height: 0.9rem;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin-right: 0.25rem;
  transition: all 0.3s ease-in-out;
}
.list-news-page a.page-num-current {
  color: #fff;
  background-color: #ff8800;
  border: 1px solid #ff8800;
}
.list-news-page a:hover {
  color: #fff;
  background-color: #ff8800;
  border: 1px solid #ff8800;
}
/*视频中心*/
.list-video-ul {
  margin-bottom: 1rem;
}
.list-video-ul li {
  width: 100%;
  margin-bottom: 0.6rem;
}
.list-video-ul li .video-play {
  width: 100%;
  display: block;
  height: auto;
  background-color: #000;
  position: relative;
}
.list-video-ul li .video-play .play-icon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  opacity: 0.9;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.list-video-ul li .video-play a img.video-img {
  width: 100%;
  opacity: 0.9;
  z-index: 1;
}
.list-video-ul li .video-title {
  display: block;
  line-height: 1.6rem;
  text-align: center;
  background-color: #f5f5f5;
}
/*医院环境图片*/
.about-listhj-img {
  text-align: center;
}
.about-listhj-img {
  width: 100%;
  text-align: center !important;
}
/*医院特色治疗*/
.tszl-item-title {
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 0.7rem;
  color: #662b19;
}
.tszl-text-content {
  margin-bottom: 0.8rem;
  background: #f5f5f5;
  padding: 0.5rem;
  line-height: 1.9;
  border-radius: 0.2rem;
}
.tszl-text-content p {
  margin-bottom: 0.5rem;
}
.tszl-text-content p:last-child {
  margin-bottom: 0;
}
/*发展历程*/
.about-lc-title {
  font-size: 0.7rem;
  color: #9c4600;
  margin-bottom: 0.2rem;
}
.about-lc-p {
  margin-bottom: 0.6rem;
  background: #f5f5f5;
  padding: 0.5rem;
  border-radius: 0.2rem;
}
/*科室列表*/
.keshi-menu-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(3, 1fr);
}
.keshi-menu-list li {
  background: #f1f1f1;
  border-radius: 0.2rem;
  height: 1.5rem;
}
.keshi-menu-list li a {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 1.5rem;
  color: #333;
}
/*# sourceMappingURL=list.css.map */