/** 修改文章目录小组件样式-列表修改为滑动 */
.toc-list {
  margin: 0;
  max-height: 200px;
  overflow-y: scroll;
}
/** 修改签到背景颜色 */
.user-w-qd-list-title {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  background-image: url(images/page-bg.svg);
  height: 43px;
  /*background-color: #fff4f4;*/
  background-color: #ff3657;
  margin: 16px 16px 6px;
}

/** 修改页面宽度 */
.page .pages-setting {
    max-width: 100%;
    margin: 0 auto;
    flex: 1;
}

.single-article {
    padding: 28px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    box-sizing: border-box;
}
/* 修改专题页面顶部图片与导航栏样式重叠问题 */
.collection-top {
    height: 255px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: column;
    color: #fff;
    background: #113c4a;
    margin-top: -16px;
    padding-bottom: 60px;
}
/* 修改文档详情页左侧目录导航样式为滑动 */
.document-left-item {
    padding: 30px;
    font-size: 14px;
    line-height: 1.4;
    max-height: 800px;
    overflow-y: scroll;
}