#party-pub-content .content-path-box{
    width: auto;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-start;
    background-color: #c7c5c5;
}
#party-pub-content .content-path-box a{
    color: #444;
    outline: none;
    font-size: 15px;
    margin: 0 10px;
    cursor: pointer;
}
#party-pub-content .content-path-box a:hover{
    color: var(--orange-color2);
}
#party-pub-content .content-path-box a:last-child{
    color: #868686;
    cursor: default;
}
#party-pub-content .content-path-box a:last-child:hover{
    color: #868686;
    cursor: default;
}

/* 限制最大宽度并居中显示 */
.box-list-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    text-align: center; /* 标题居中 */
    margin-top: 0;
    margin-bottom: 80px;
}
  
  .box-list {
    margin-top: 20px;
  }
  
  /* 每个子项的布局 */
  .box-item {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
  }
  
  /* 左侧区域样式 */
  .box-left {
    width: 30%;
    padding: 15px;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  
  .box-left p {
    margin-left: 20px;
    font-size: 14px;
    color: #333; /* 字体颜色 */
    line-height: 1.6;
  }
  
  /* 右侧区域样式 */
.box-right {
    width: 70%;
    padding: 15px;
    background-color: #fff; /* 右侧背景色 */
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* 标题样式 */
  .intro-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center; /* 标题居中 */
    margin: 0;
    padding-bottom: 10px; /* 添加下方间距 */
    color: #f58915;
  }
  .box-right p {
    white-space: pre-wrap;
    line-height: 1.6;
  }
  /* 去除两组方框的上下间隙 */
  .box-item + .box-item {
    border-top: none; /* 移除上方边框，防止重复 */
  }
  /* 为特定容器中的表格添加样式 */
.rich-text-container table {
  border-collapse: collapse;
  width: 100%;
}

.rich-text-container table, 
.rich-text-container th, 
.rich-text-container td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}
.box-list-container img {
  width: auto !important;
  height: auto !important;
}