@import 'mixins/mixins';
@import 'common/var';

@include b(page-container) {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: $--background-color-base;

  @include e(header) {
    display: flex;
    height: 50px !important;
    line-height: 50px;
    background: #fff;
    box-shadow: $--box-shadow-base;

    .title {
      height: 50px;
      margin: 0;
      font-size: 18px;
      line-height: 50px;
      color: #303133;
    }

    .left {
      position: relative;
      display: flex;
      margin-right: 40px;
      cursor: pointer;

      &::after {
        position: absolute;
        top: 50%;
        right: -20px;
        width: 1px;
        height: 16px;
        content: '';
        background-color: $--border-color-base;
        transform: translateY(-50%);
      }

      .el-icon-back {
        align-self: center;
        margin-right: 6px;
        font-size: 18px;
      }

      .back {
        font-size: 14px;
        font-weight: 500;
      }
    }
  }

  @include e(body) {
    padding: 20px;
    margin: 20px;
    background: #fff;
  }

  @include e(footer) {
    height: 50px !important;
    line-height: 50px;
    background: #fff;
    box-shadow: $--box-shadow-base;
  }
}
