// 列表无数据组件
.cts-nodata {
  // background-color: $color-bg;
  text-align: center;
  // height: calc(100% - 96px);
  padding-bottom: 20px;

  .nodata-img {
    width: 200px;
    height: 180px;
    margin-top: 120px;
  }

  .nodata-title {
    margin-top: 18px;
    font-size: $font-size-34;
  }

  .nodata-note {
    margin: 20px 0 28px 0;
    color: $theme-sub1;
    font-size: $font-size-24;
  }

  // 按钮样式，从children获取
  .nodata-btn {
    display: flex;
    justify-content: center;

    button {
      margin: 0;
      padding: 0;

      &:nth-child(2) {
        margin-left: 32px;
      }

      &.btn-1 {
        @include btn-style-small(220px, $theme, $theme-sub2);
      }

      &.btn-2 {
        @include btn-style-small();
      }
    }
  }
}