﻿/* 整体布局 */

body,
header,
div,
nav,
section,
ul,
ol,
li,
span,
a,
em,
i,
p,
footer,
dl,
dd,
h1,
h2,
h3,
h4,
article,
menu {
  padding: 0;
  margin: 0;
}
a{
    cursor: pointer;
    text-decoration: none;
    color: black;
}
a :hover{
    cursor: pointer;
}
ul,
ol,
li {
  list-style: none;
}
.camp1{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
   overflow: hidden;
}
.camp2{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
   overflow: hidden;
}
.camp3{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
   overflow: hidden;
}
.camp4{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
   overflow: hidden;
}
.href_blue{
  color: var(--mprimary-color) ;
}
.href_blue:hover{
  text-decoration: underline;
  text-decoration-color: var(--mprimary-color);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.nofilter_img{
  filter: blur(0px) !important;
}
/* 容器 */
.common_con{
  width: 100%;
  margin: 0 auto;
}
.list_con{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
  padding: 10px;
  box-sizing: border-box;
}
/* 首页 */
/* header start */
.header-con {
  width: calc(100% );
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  box-sizing: border-box;
}
.header-left,
.header-right {
  display: flex;
  align-items: center;
}
.fold-img {
  width: 20px;
  margin-right: 10px;
  cursor: pointer;
}
.logo-img {
  width: 90px;
}
.header-right {
  color: #515151;
  font-weight: 700;
  font-size: 15px;
}
.fold-con {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #fff 0%, var(--mprimary-color) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  display: none;
  list-style: none;
  overflow: hidden;
  position: fixed;
  z-index: 100;
}
.fold-con li {
}
.fold-con li {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
/* 展开时菜单项逐个显示 */
.fold-con.show li {
  opacity: 1;
  transform: translateY(0);
}

/* 错开的动画延迟 */
.fold-con.show li:nth-child(1) {
  transition-delay: 50ms;
}
.fold-con.show li:nth-child(2) {
  transition-delay: 100ms;
}
.fold-con.show li:nth-child(3) {
  transition-delay: 150ms;
}
.fold-con.show li:nth-child(4) {
  transition-delay: 200ms;
}
.fold-con.show li:nth-child(5) {
  transition-delay: 250ms;
}
.fold-con.show li:nth-child(6) {
  transition-delay: 300ms;
}

.fold-con li a {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

/* header end */
/* tabbar start */
.m_body .tabbar{
  width: 100%;
  padding: 0px !important;
   display: grid;
  grid-template-columns: repeat(3, auto);
  margin-top: 20px;
}

.m_body .tabbar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m_body .tabbar_item img {
  width: 3.5rem;
}
/* tabbar end */
/* 首页 end */

/* footer 布局 */
 .footer{
        padding: 10px;
        display: flex;
        flex-direction: column;
        padding: 10px;
        margin: 10px 0px 40px 0px;
        box-sizing: border-box;
    }
    .f_text{
        font-size: 14px;
        color: #555;
    }
    .f_mzsm{
        margin: 10px 0px;
    }
    .bot_f{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    .bot_fl{

    }
    .f_code{
        width: 70px;
    }
    .footer-fixed{
        height: 60px;
        display: flex;
        align-items: center;
        background: #ffffff;
        bottom: 0px;
        left: 0;
        right: 0;
        z-index: 999;
        justify-content: space-around;
        position: fixed;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        width: 100%;
        padding: 6px 0 8px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-sizing: border-box;
    }

.footer-fixed-item{
    color: #666;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    /* border-radius: 10px; */
    min-width: 0;
}

.footer-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    line-height: 1;
}

.footer-text {
    font-size: 11px;
    line-height: 1.2;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* 首页图标 */
.footer-home .footer-icon::before {
    content: '🏠';
    display: block;
}

/* 找医院图标 */
.footer-hospital .footer-icon::before {
    content: '🏥';
    display: block;
}

/* 去咨询图标 */
.footer-consult .footer-icon::before {
    content: '💬';
    display: block;
}

/* 找医生图标 */
.footer-doctor .footer-icon::before {
    content: '👨‍⚕️';
    display: block;
}

/* 热词图标 */
.footer-hot .footer-icon::before {
    content: '🔥';
    display: block;
}

/* 移动端底部微信 */
.weixin-footer {
  display: flex;
  padding: 10px 15px 10px 15px;
  overflow: hidden;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #000;
}
.weixin-footer .foot_left {
  width: 80%;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}
.weixin-footer .foot_right {
  text-align: center;
  margin-left: 30px;
  background: #31c14c;
  width: 100px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  border-radius: 20px;
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
.weixin-footer .foot_left_img {
  display: flex;
  font-size: 16px;
}
.weixin-footer .foot_left_img img {
  width: 25px;
  height: 25px;
  margin-top: 3px;
}
.weixin-footer .foot_left_img span {
  padding-left: 10px;
}
.weixin-footer .footer-left-bottom {
  font-size: 14px;
}
.weixin-footer .foot_right img {
  width: 25px;
  height: 25px;
  margin-top: 4px;
  margin-left: 3px;
}
/* footer 结束 */
/* 首页 */
/* 文本行高 */
.index_text{
  font-size: 14px;
}
.index_h4{
  font-size: 18px;
  line-height: 30px;
}
.index_dec{
  font-size: 15px;
}
.index_time{
  font-size: 15px;
  color: #808080;
}
  .choose_nav {
    color: var(--mprimary-color);;
  }
/* 导航路径开始 */
.position_con{
    width: 100%;
    align-items: center;
    padding: 3px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    font-size: 15px;
    color: #999;
    margin-bottom: 10px;
    background-color: #fff;
    box-sizing: border-box;
}
.position_con a{
    color: #999;
}
/* 导航路径结束 */
/* 列表页 */

/* 卡片布局 */
.card_con{
    width: 100%;
    display: flex;
    /* align-items: center; */
    margin: 15px 0px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}
.card_img{
  width: 100px;
  height: 110px;
  margin-right: 10px;
}
.card_textcon,.card_button{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.card_txt_item{
  line-height: 30px;
}
.card_textcon{ 
  width: 71%;
}
/* 列表页项目价格：文案「优惠价￥」黑色，金额 .youhui-jia 红色 */
.jiage-time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jiage-con {
  color: #000;
}
.youhui-jia {
  color: #d32f2f;
  font-weight: 600;
  margin: 0 4px;
}
.yuan-jia {
  color: #808080;
  text-decoration: line-through;
}
/* 项目 */
.xm_con {
  width: 100%;
}
.xm_tex {
}
.xm_but {
  max-width: 90px;
  padding:0px 5px;
  border-radius: 15px;
  border: 1px solid var(--mprimary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xm_but:hover {
 background-color: var(--mprimary-color);
 color: #fff;
}
/* 分页 */
.page_con { 
  padding: 10px 0px;
  margin: 0 auto;
}
.page_con span{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: var(--mprimary-color);
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    padding: 0px 5px;
}
/* 列表标题 */
.list_tit{
  font-size: 17px;
  margin-bottom: 10px;
  color: black;
  margin: 0px;
}
.list_himg{
  height: 155px;
    object-fit: cover;
}
.underline:hover{
   text-decoration: underline; 
  text-decoration-color: var(--mprimary-color);; 
  text-decoration-thickness: 1px; 
  text-underline-offset: 4px; 
  cursor: pointer;
}
.card_listtexcon{
  width: 75% !important;
}
/* 侧边栏 */
.aside_con{
  width: 24%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
box-sizing: border-box;
}
.aside_fz{
  font-size: 14px;
}
.card_rightcon {
  height: 90px !important;
  padding: 0px 5px;
}
.aside_card_img{
  width: 90px;
  height:80px;
}
.aside_titcon{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--mprimary-color);;
  color: #fff;
  padding: 10px ;
}
.aside_more{
  color: #fff;
}
/* 项目 */
.kb_con{
  height: 10px;
}
/* 项目 */
/* 问答 */
.list_wdcard{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  height: 170px;
  justify-content: space-around;
}
.wd_qcon,.wd_acon{
  display: flex;
  margin: 10px 0px;
  align-items: center;
}
.wd_q,.wd_a{
  width: 35px;
  min-width: 35px;
  height: 35px;
  background-color: var(--mprimary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.wd_a{
   background-color: #ccc!important;
}
.wd_t{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* 新增tag聚合页 */
.tag_con{
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
  border-radius: 12px;
}
.tag_nav{
  padding:0px 10px;
}
.reci {
  font-size: 16px;
  padding: 20px 0 20px 0;
  box-sizing: border-box;
  display: flex;
  margin: 10px 5px;
}
.reci_zi {
  font-weight: bold;
}
.reci_xian {
  margin: 0 20px 0 9px;
}
.reci_letter_con {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #c6c6c6;
  padding: 0 0 10px 0;
}
.page {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page span {
  display: inline-block;
  height: 30px;
  width: 30px;
  font-size: 18px;
  color: #fff;
  background: var(--mprimary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin: 0 5px;
}
.letter {
  margin: 0 10px 10px 10px;
  color: #000;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.letter:hover {
  color: #fff !important;
  background: var(--mprimary-color);
  border-radius: 50%;
}
.letter_act {
  color: #fff;
  background: var(--mprimary-color);
  border-radius: 50%;
}
/* 内容 */
.reci_hidden {
  height: 20px;
}
.textarea_wrap .t_new {
  width: 99%;
  min-height: 50px;
  margin-top: 5px;
}
.reci_con {
  display: flex;
  padding: 0 10px;
  box-sizing: border-box;
}
.reci_title {
  width: 60px;
  min-height: 80px;
  border: 1px solid var(--mprimary-color);
  background: #fef5f8;
  color: var(--mprimary-color);
  font-weight: bold;
  font-size: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hospitalTitle {
  margin-left: 15px;
}
.reci_box {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f7f7f7;
  padding: 16px 0 16px 14px;
}
.reci_div {
  display: flex;
  align-items: center;
  justify-content: center;
 padding: 5px
}
.reci_a {
  font-size: 14px;
  color: #424242;
}
.reci_a:hover {
  color: var(--mprimary-color);
  text-decoration: none;
}
.reci_list_top {
  margin: 10px;
}
/* 医院详情页 */
.yytop_con{
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.yytop_img{
  width: 100%;
  height: 300px;
  margin-right: 10px;
  /* filter: blur(10px); */
  padding: 10px;
  object-fit: contain;
  box-sizing: border-box;

}
.show_tit{
  font-size: 18px;
}
.yytop_text_item{
  line-height: 30px;
  display: flex;
}
.yytop_text{
  justify-content: space-between;
}
.yytop_zxzx{
  background-color: var(--mprimary-color);
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0px;
  font-size: 15px;
  margin: 10px 0px 5px 0px;
}
.yytop_scxm{
  min-width: 50px;
}
/* 详情页导航 */
  .show_nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 15px 0px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
 .show_nav li {
    width: 24%;
    height: 35px;
    border: 1px solid #66666660;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .show_navitem {
    background: var(--mprimary-color);;
  }
  .show_navitem a{
    color: #fff;
  }
  .nav_num {
    display: inline-block;
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    padding: 0px 5px;
    text-align: center;
    background-color: var(--mprimary-color);
    border-radius: 50%;
    z-index: 999;
  }
    /* 详情页文章 */
  .show_article{
    padding: 12px;
}
.show_article p{
    text-indent: 2em;
    line-height: 28px;
}
.show_article p img{
    display: block;
    /* -webkit-filter: blur(15px); */
    width: 100%;
    margin: 10px auto;
    height: 300px;
    padding: 10px;
    box-sizing: border-box;
}
.show_article .imgCon img{
  filter: blur(0px) !important;
  width: 100%;
}
/* 详情页标题 */
  .hositem_tit{
    font-size: 18px;
    font-weight: 600;
    border-left: 5px solid var(--mprimary-color);;
    padding-left: 10px;
  }
/* 热搜关键词 */
  .key_con {
    width: 100%;
  }
  .key_tit {
    min-width: 120px;
    font-size: 20px;
    color: #66ccff;
    font-size: 24px;
    margin: 10px 10px;
  }
  .key_con_key {
    max-width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    word-break: break-all;
    margin: 0px 10px;
  }
  .key-item {
    height: 25px;
    line-height: 25px;
    display: block;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    font-size: 12px;
    color: #61c6cc;
    padding: 0 5px;
    border-radius: 2px;
    border: 1px solid #61c6cc;
    margin-bottom: 10px;
  }
  /* 详情页卡片样式 */
.kuai_con,
.tiao_con,
.zzimg_con {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.kuai_con .kuai_item {
  width: 48%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.kuai_con .kuai_item_hj {
  width: 32%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.kuai_con .kuai_img {
  width: 90%;
  height: 150px;
  background-size: cover;
  background-position: center;
  /* filter: blur(15px); */
  padding: 10px;
}
.kuai_con .kuai_text {
  line-height: 30px;
  margin: 0px 10px;
}
.kuai_con .kuai_name {
  text-align: center;
  border-bottom: 1px dashed #2e2b2b;
}
.kuai_con .center_text {
  text-align: center;
}
/* xm价格 */
.jg_con {
  width: 100%;
  font-size: 14px;
  display: flex;

  align-items: center;
}
.yh_jia {
  color: red;
  font-weight: bold;
  font-size: 16px;
  margin: 0px 5px;
}
.show_jgcon {
  font-size: medium;
}
.y_jia {
  color: #808080;
  text-decoration: line-through;
}

/* tiao */
.tiao_con .tiao_item {
  width: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  padding-bottom: 10px;
}
.tiao_con .tiao_img {
  width: 100px;
  max-height: 120px;
  margin-right: 10px;
  /* filter: blur(15px); */
  padding: 10px;
}
.tiao_con .tiao_textcon {
  width: 80%;
  padding: 10px;
  flex-direction: column;
}
.tiao_con .tiao_tit {
  font-weight: bold;
}
.tiao_con .tiao_des {
  margin: 5px 0px;
}
  /* 详情页卡片样式end */
  /*荣誉资质 */
.ryzz_img {
  width: 48%;
  /* height: 300px !important; */
  cursor: zoom-in; /* 鼠标悬停显示放大图标 */
  transition: transform 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.ryzz_img:hover {
  transform: scale(1.02); /* 轻微放大效果提示可点击 */
}

/* 图片预览层样式 */
.image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 预览图片样式 */
.viewer-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: zoom-out; /* 显示缩小图标 */
}

/* 关闭按钮样式 */

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #bbb;
}
/* 荣誉资质 */
/* 评价开始 */
.dp_con{
    width: 100%;
}
.dp_con .dp_tit{
  color: var(--color-primary);;
  margin: 15px 0px;
}
.dp_con .dp_img{
  width: 100px;
  padding: 10px;
  /* filter: blur(15px); */
}
.dp_con .dp_des{
  margin-bottom: 10px;
}

.dp_con .textarea_wrap{
	width: 100%;
    height: 100px;
}
.dp_con .textarea_wrap textarea{
	display: block;
    height: 100%;
    padding: 4px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    resize: none;
    text-indent: 4px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
}
.dp_con .submit_btn{
	  margin: 10px 0;
    padding: 6px 10px;
    background-color:var(--mprimary-color);;
    border: 0;
    color: white;
    border-radius: 4px;
    display: flex;
    justify-content: flex-end;
    margin-left: 80%;
}
/* 评价结束 */
.zx_bjcon,.fx_bjcon {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #999;
  margin: -15px 0px 20px 0px;
}
/* 项目侧边 */
 /* 侧边 */
   .xm_asidecon{
    margin-top: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);

   }
  .aside_con_top,.aside_con{
    width: 100%;
  }
  .aside_con_top .hos_con{
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    border: 1px dashed pink;
    margin: 5px;
    padding: 5px;
    width: 95%;

  }
  .yy_img_link{
    width: auto !important;
  }
  .aside_con_top .hos_con img{
    width: 100px;
    height: 90px;
    /* filter: blur(10px); */
  }
  .aside_con_top .hos_con .hos_con_info{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    width: 70%;

  }
  .aside_con_top .hos_con .hos_con_info .camp1{
   font-size: 14px;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   overflow: hidden;
   width: 100%;
  text-align: left;
  line-height: 25px;

  }
  .aside_con_top .hos_con .hos_con_info .title{
   font-weight: 600;
  }
  .aside_con_top .hos_con .hos_con_info .time{
   font-size: 13px;
  }
  .aside_con_bottom{
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  .aside_con_bottom .sidebar{
    padding:0px 5px ;
  }
  .xcimg{
    width: 100%;
  }
  /* 资讯详情页 */
  .zx_detcon {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0px;
  margin-bottom: 10px;
  /* border-radius: 10px; */
}
.zx_dettopcon{
 border-bottom: none;
   margin-bottom: 0px;

}
.zx_bjcon,.fx_bjcon {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #999;
  margin: -15px 0px 20px 0px;
}
/* 问答 */
.wd_titcon {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0px 20px 0px;
}
.wd_titcon .wd_titimg ,
.wd_arttitcon .wd_titimg{
  width: 35px;
  min-width: 35px;
  height: 35px;
  background-color: var(--mprimary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 20px;
  box-sizing: border-box;
}
.wd_titcon .wd_tit {
  font-size: 22px;
  line-height: 30px;
}

.wdys_con {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.wdys_con .ys_msgcon {
  width: 72%;
  display: flex;
  align-items: center;
}
.wdys_con .ys_msgcon img {
  margin-right: 10px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.ys_name {
  font-weight: bold;
}
.ys_yy {
  margin-top: 15px;
  font-size: 15px;
}
.ys_nametit {
  font-weight: normal !important;
}
.ys_zxys {
  height: 30px;
  width: 80px;
  border: 1px solid #66ccff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.wd_article{
  border: 1px solid #ccc;
}
.wd_bjcon{
  padding: 20px 0px !important;
  border-bottom: 1px dashed #ccc;
}
.wd_arttitcon{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.wd_arttitcon .wd_jxhf{
  font-size: 20px;
  font-weight: bold;
  color: var(--mprimary-color);
}
/* 分享 */
/********* 图片点击切换 *********/
.share_img_container {
  width: 100%;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* 大图容器 */
.big-image-container {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* 缩略图容器 */
.thumbs-container {
  display: flex;
  gap: 10px;
}

/* 缩略图样式 */
.thumb {
  width: calc(20% - 8px); /* 5个图片平均分配宽度 */
  height: 80px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

/* 高亮状态 */
.thumb.active {
  border-color: var(--mprimary-color);
}
.switch-btn {
  width: 50px !important;
}
.share_img_container img {
  width:100%;
  height: 100%;
  object-fit: cover;
}
.big-image-container img{
  height: 400px !important;
}
.thumbs-container img {
}
/* 切换按钮 */
.controls {
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  justify-content: space-between;
  position: absolute;
  z-index: 999;
  top: 150px;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}
/* 分享卡片 */
/* card */
.share_about_con {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
   padding: 10px;
}
.share_about_ys,
.share_about_yy {
  width: 100%;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px 3px rgba(199, 215, 233, 0.5);
}
.share_tximg_link{
  width: 70px;
}
.share_tximg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
  /* filter: blur(20px); */
}
.share_info_con {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.share_info_con div {
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.share_info_tit {
  font-weight: 600;
}
.share_info_pj {
  width: 100px;
  margin: 5px 0px;
}
.share_time_sx {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
}
.share_info_time {
  font-size: 14px;
  color: #b2b2b2;
}
.share_info_but {
  color: #00ab84;
  width: 70px;
  height: 30px;
  border-radius: 20px;
  border: 1px solid #00ab84;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
/* 医生问答 */
.jieda_con {
  margin: 10px 0px;
  font-size: 15px;
  font-weight: normal;
  padding: 0px 10px;
  box-shadow: 0 2px 4px rgba(139, 143, 142, 0.2),
    0 6px 12px rgba(139, 143, 142, 0.15), 0 12px 24px rgba(139, 143, 142, 0.1);
}
.jieda_item {
  box-sizing: border-box;
  line-height: 30px;
     
}
/* 医生问答 end */
  /* 优化省份城市选择器样式 */
    .xm_nav_data {
        margin-bottom: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .nav_title {
        position: relative;
        padding: 15px 20px;
        background: var(--mprimary-color);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav_title .left-content {
        display: flex;
        align-items: center;
    }

    .nav_title h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .nav_title i {
        width: 24px !important;
        height: 24px !important;
        transition: transform 0.3s ease;
        cursor: pointer;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: contain !important;
    }

    .nav_title i.up {
        transform: rotate(180deg);
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 14l5-5 5 5z'/%3E%3C/svg%3E") no-repeat center !important;
        background-size: contain !important;
    }

    .nav_title:hover {
        background: linear-gradient(135deg, var(--mprimary-color) 0%, var(--mprimary-color)100%); 

    }

    .nav_content {
        padding: 20px;
        background: #fff;
    }

    .nav_content.area {
        padding: 5px;
            display: flex;
    flex-wrap: wrap;
    padding: 0.5em;
    box-sizing: border-box;
    }

    .nav_content.area a {
        padding: 10px 8px;
        background: #f8f9fa;
        color: #495057;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
        text-align: center;
        box-sizing: border-box;
        width: calc(16.666% - 7px);
        margin-right: 8px;
        margin-bottom: 8px;
        font-weight: 500;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .nav_content.area a:hover {
        background: linear-gradient(135deg, var(--mprimary-color) 0%, var(--mprimary-color)100%); 

        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .nav_content.area a:active {
        background: linear-gradient(135deg, var(--mprimary-color) 0%, var(--mprimary-color)100%); 

        color: #fff !important;
    }

    .nav_content.area a.curPage {
        background: var(--mprimary-color); 

        color: #fff !important;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    /* 城市选择器特殊样式 */
    .xm_nav_data.city {
        margin-top: 10px;
        animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .nav_title {
            padding: 8px 15px;
        }

        .nav_title h4 {
            font-size: 14px;
        }

        .nav_content {
            padding: 15px;
        }

        .nav_content.area a {
            width: calc(20% - 6px);
            font-size: 13px;
            padding: 8px 5px;
            margin-right: 6px;
            margin-bottom: 6px;
        }
    }

    @media (max-width: 480px) {
        .nav_content.area a {
            width: calc(25% - 5px);
            font-size: 12px;
            padding: 6px 3px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
    }

    /* 添加涟漪效果 */
    .nav_content.area a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .nav_content.area a:active::after {
        width: 300px;
        height: 300px;
    }
    .arttit_con{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}
.arttit_bj{
  margin-right: 20px;
  color: #808080;
}
  .share_xmcon{
    display: flex;
    flex-wrap: wrap;
  }
  .xm_itemcon{
    max-width: 200px;
  }
  .show_article .div_wrap{
    width: 100%;
    box-sizing: border-box;
}
  .show_article .div_wrap img{
    width: 100% !important;
    object-fit: cover;
}