
.section-title {
  width: 100%;
  min-height: 43px;
  line-height: 42px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(229, 229, 229, 0.5); 
}
.section-title h3{
  font-size: 24px;
  line-height: 42px;
  font-weight: 600;
  color: var(--text-color);
}
/* 文章列表 */
.articleList { 
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto 0 auto;
}
.articleList .article-row { 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}
.articleList .article-row:last-child{ 
  margin-bottom: 0px;
}
.articleList .article-row:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}
.articleList .article-info { 
  flex: 1;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.articleList .article-title {width: 100%;height: 30px; line-height: 30px;font-size: 24px; font-weight: bold; color: #000000; margin-bottom: 12px;}
.articleList .article-desc {width: 100%; -webkit-line-clamp: 3; height: 84px;line-height: 28px;color: var(--text-color6); font-size: 16px; margin-bottom: 22px;}
.articleList .articbot { 
  height: 24px;
  line-height: 24px;
  color: #999999; font-size: 14px; display: flex; align-items: center; justify-content: space-between;
}
.articleList .article-plays { 
  color: #666666; font-size: 12px;
  display: flex; align-items: center; gap: 5px;
}
.articleList .article-plays .lkimg{
  width: 12px;
  height: 12px; 
  display: block;
}
.articleList .article-img {
  min-width: 345px;
  width: 345px; height: 193px; border-radius: 10px; overflow: hidden; background: #eee; flex-shrink: 0; }
.articleList .article-img img { width: 100%; height: 100%; object-fit: cover;display: block;}

/* 文章詳情 */
.sectionDetail{
  width: 100%;
}
.sectionDetail .Detailbox{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.sectionDetail h1 {
  font-size: 32px; font-weight: bold; color: #000; line-height: 40px; 
  margin: 30px 0 20px 0;
}
.sectionDetail .timeline {
  color: #999999; font-size: 14px; 
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px dashed #E5E5E5;
  display: flex; 
  gap: 10px; 
  box-sizing: border-box;
}
.sectionDetail .artc-author{ 
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 14px;
  color: #999999;
  font-size: 16px;
}
.sectionDetail .artc-author .avatar { 
  width: 80px;
  height: 80px; border-radius: 50%; object-fit: cover; 
}
.sectionDetail .artc-author .doctor-info {
  display: flex;
  line-height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.sectionDetail .artc-author .doctor-info .line{
  color: #000000;
  margin-bottom: 14px;
}
.article-intro { 
  background: #F9FAFB;
  padding: 24px; 
  color: #999999;
  font-size: 16px; 
  margin: 20px 0 10px 0;
  overflow: hidden;
}
.article-intro .label { 
  float: left;
  height: 28px;
  line-height: 28px;
  color: #fff; 
  padding: 2px; 
  font-size: 12px;
  margin-right: 10px; 
  margin-bottom: 2px;
  margin-top: -6px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.article-intro .label::after{
  content: '';
  display: block;
  width: 100%;
  height: 110%;
  background: #000000;
  position: absolute;
  top: -10%;
  left: 0;
  z-index: -1;
}
.article-intro .intro-content {
  width: 100%;
  line-height: 24px;
}
.article-detail-content { 
  color: #000000; 
  font-size: 18px; 
  line-height: 32px; 
}
.article-detail-content p{ 
  margin: 10px 0;
}
/* 问答列表 */
.askList {
  width: 1200px;
  margin: 30px auto 0 auto;
}
.askList .ask-card { 
  width: 100%;
  display: block;
  padding: 20px 20px 30px 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.askList .ask-card:last-child{ 
  margin-bottom: 0px;
}
.askList .ask-q,
.askList .ask-a {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.askList .ask-q{margin-bottom: 20px;}
.askList .ask-a{margin-bottom: 30px;}
.askList .ask-q img,
.askList .ask-a img{
  min-width: 32px;
  width: 32px;
  height: 32px;
  display: block;
}
.askList .ask-q .title {
  height: 32px;
  line-height: 32px;
  font-size: 18px; 
  font-weight: bold;
  color: #000000;
}
.askList .ask-a .desc {
  color: #666; 
  height: 56px;
  line-height: 28px;
  font-size: 16px; 
}
.askList .ask-info { 
  width: 100%;display: flex;align-items: flex-end;
  justify-content: space-between; 
  border-top: 1px dashed #E5E5E5;
  padding-top: 21px;
  box-sizing: border-box;
}
.askList .ask-info .ans-doctor{ 
  display: flex;
  min-height: 56px;
  line-height: 24px;
  align-items: center;
  gap: 14px;
  color: #999999;
  font-size: 16px;
}
.askList .ask-info .ans-doctor .ask-avatar { 
  width: 56px;
  height: 56px; border-radius: 50%; object-fit: cover; 
}
.askList .ask-info .ans-doctor .doctor-info {
  display: flex;
  min-height: 56px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.askList .ask-info .ans-doctor .doctor-info .line{
  width: 100%;
}
.askList .ask-info .ans-doctor .doctor-info .hospital{
  width: 100%;
  line-height: 24px;
}
.askList .ask-info .ask-author{color: #000000;}
.askList .ask-info .ask-date { 
  line-height: 20px;
  color: #999999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.askList .ask-info .ask-date img{
  width: 16px;
  height: 16px;
  display: block;
} 

/* 问答详情 */
.ask-detail-q { display: flex; align-items: flex-start; gap: 10px; margin:30px 0 20px 0; }
.ask-detail-q .icon { width: 32px;
height: 32px; display: block; }
.ask-detail-q h1 { 
  font-size: 32px;font-weight: bold; 
  color: #000; line-height: 39px; margin: 0; 
}
.ask-detail-meta {
  color: #999999; font-size: 14px; 
  margin-bottom: 20px;
  padding-bottom: 11px;
  border-bottom: 1px dashed #E5E5E5;
  display: flex; 
  gap: 10px; 
  box-sizing: border-box;
}
.ask-detail-desc { 
  background: #F9FAFB;
  padding: 17px 20px 17px 12px; 
  color: #999999;
  font-size: 16px; 
  margin-top: 22px;
  box-sizing: border-box;
}
.ask-desc-label { 
  height: 24px;
  line-height: 24px;
  color: #000000; 
}
.ask-desc-content {
  width: 100%;
  line-height: 24px;
  margin-top: 10px;
}
.ask-detail-answer-title { 
  display: flex; align-items: flex-start; 
  gap: 10px; margin:20px 0; 
}
.ask-detail-answer-title .icon { width: 32px;
height: 32px; display: block; }
.ask-detail-answer-title span { 
  font-size: 20px;font-weight: 400; 
  color: #000; line-height: 32px;
}
.ask-detail-answer {
  padding-bottom: 20px;
  border-bottom: 1px dashed #E5E5E5;  
  margin-bottom: 20px; 
}
.ask-detail-content{
  color: #000000; 
  font-size: 18px; 
  line-height: 32px; 
  margin-top: 20px;
}
.ask-detail-content p{
  margin: 10px 0;
}
.ask-detail-list .ask-detail-answer:last-child{
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}



/* hover */
/* .askList .ask-card:hover .ask-info */
.askList .ask-card:hover{
  border-color: var(--text-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.askList .ask-card:hover .ask-q .title,
.articleList .article-row:hover .article-title {
  color: var(--text-color);
}


@media screen and (max-width: 1500px) {
  .articleList{
    width: 100%;
    margin: 30px 0 0 0;
  }
  .askList {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 870px) {}
/* Mobile */
@media screen and (max-width: 750px) {
  .section-title h3 {
    font-size: 22px;
  }
  .askList {
    margin: 15px 0 0 0;
  }
  .articleList {
    margin: 15px 0 0 0;
  }
  .articleList .article-row {
    gap: 20px;
  }
  .articleList .article-title{
    font-size: 20px;
  }
  .articleList .article-desc{
    margin-bottom: 5px;
  }
  .articleList .article-img {
    min-width: auto;
    width: 250px;
    height: 154px;
  }
}
@media screen and (max-width: 550px) {
  .section-title{
    margin-top: 15px;
  }
  .articleList .article-title{
    margin-bottom: 10px;
  }
  .articleList .article-desc{
    -webkit-line-clamp: 2;
    height: 56px;
  }
  .articleList .article-img {
    width: 180px;
    height: 110px;
  }
  .sectionDetail .article-tit h1 {
    margin: 20px 0 20px 0;
  }
  .sectionDetail .sectionYSmk{
    margin-top: 20px;
  }
  .askList .ask-q,
  .askList .ask-a {
    margin-bottom: 15px;
  }
  .askList .ask-info{
    flex-direction: column;
    padding-top: 15px;
  }
  .askList .ask-card {
    padding: 15px;
    margin-bottom: 15px;
  }
  .askList .ask-info .ans-doctor{
    width: 100%;
    font-size: 14px;
  }
  .askList .ask-info .ask-date{
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 12px;
    gap: 5px;
  }
}
@media screen and (max-width: 450px) {
  .section-title h3 {
    font-size: 20px;
  }
  .articleList .article-row {
    gap: 15px;
    padding: 10px;
  }
  .articleList .article-title{
    font-size: 18px;
    margin-bottom: 0;
  }
  .articleList .article-desc{
    font-size: 14px;
    height: 44px;
    line-height: 22px;
    margin-bottom: 0;
  }
  .articleList .articbot{
    font-size: 12px;
  }
  .articleList .article-img {
    width: 140px;
    height: 95px;
  }
  .sectionDetail h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .ask-detail-q h1{
    font-size: 24px;
    line-height: 32px;  
  }
}