.title-wrapper {
  position: relative;
  background-color: white;
  padding: 15px 15px 0;

  &.common-key-title{
     >.title-container{
       >.title{
        font-size:15px;
        font-family:PingFangSC-Regular,PingFang SC;
        font-weight: 400;
        color:rgba(0,0,0,1);
       }
     }
  }

  &:last-child {
    padding-bottom: 15px;
  }

  &:not(:last-child) {
    padding-bottom: 15px;

    &:after {
      content: '';
      display: inline-block;
      position: absolute;
      left: 15px;
      right: 15px;
      bottom: 0;
      height: 1px;
      background: #eee;
    }
  }

  // 影响到页面其他模块的标题样式了
  // &:not(:first-child) {
  //   padding-top: 0px;
  // }

  > .title-container {
    display: flex;
    align-items: center;

    & + * {
      margin-top: 15px;
    }

    .title {
      flex: 1;
      color: #000;
      font-size: 15px;
      font-family: PingFangSC-Semibold, PingFang SC;
      font-weight: 700;
      color: rgba(51, 51, 51, 1);
    }

    .desc {
      font-size: 13px;
      color: var(--theme-primary);
    }
  }
}
