.detail-commom{
    background-color: #fff;
    margin: 30px auto;
    padding: 48px;
    border-radius: 10px;
    width: 100%; /* 改为100%宽度 */
    max-width: 1200px; /* 最大宽度限制 */
    box-sizing: border-box; /* 确保padding不撑大宽度 */
}
.detail-commom-title{
    font-weight: bold;
    font-size: 30px;
    color: #565656;
    padding-bottom: 20px;
    line-height: 38px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    /* border-bottom: 2px solid #565656; */
}
img, table{
    max-width: 100%;
}
.article{
    font-weight: 400;
    font-size: 18px;
    color: #565656;
    line-height: 33px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.attachment{
    margin-bottom: 25px;
}
.attachment-title{
    font-size: 20px;
    color: #248BFF;
    font-weight: normal;
    padding: 0 0 13px 0;
}
.attachment-content{
    margin-bottom: 10px;
    margin-left: 20px;
}
.attachment-content a{
    color: #565656;
    padding: 0 5px 0 0;
    text-decoration: none;
    font-size: 16px;
}
.attachment-content a:hover{
    color: #565656;
    text-decoration: underline;
}
.bread-nav{
  width: 100%; /* 改为100%宽度 */
  max-width: 1200px; /* 最大宽度限制 */
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  color: #858585;
  margin-top: 24px;
  padding: 0 15px; /* 增加左右内边距 */
  box-sizing: border-box;
}
.bread-nav a{
  color: #858585;
}
.bread-nav a:hover {
  color: #248BFF;
}
.bread-nav :last-child{
  font-weight: bold;
  font-size: 16px;
  color: #626262;
}

/* 430px专属适配 */
@media (max-width: 430px) {
  .detail-commom {
    padding: 15px 10px; /* 与HTML内嵌样式保持一致 */
  }
  .attachment-title {
    font-size: 17px; /* 附件标题缩小 */
    padding-bottom: 8px;
  }

  .article img {
    max-width: 100%;
    height: auto !important;
  }
  .attachment-content {
    margin-left: 10px; /* 附件内容左间距减小 */
    margin-bottom: 8px;
  }
  .attachment-content a {
    font-size: 14px; /* 附件链接字体缩小 */
    word-break: break-all; /* 长文件名自动换行 */
  }
  .related-content {
    flex-direction: column; /* 相关文章强制纵向排列 */
    gap: 5px; /* 增加上下间距 */
  }
  .related-content span {
    font-size: 13px; /* 相关文章日期缩小 */
    color: #858585;
  }
}

/* 新增媒体查询：适配移动端 */
@media (max-width: 767px) {
  .detail-commom {
    padding: 20px 15px;
    margin: 15px auto;
  }
  .bread-nav {
    font-size: 14px;
    margin-top: 15px;
  }
}
