style.less 2.9 KB
.production-list-box {
  background: #202D48;
}
.production-list {
  &--batch {
    margin-bottom: 221px;

    &_info {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #37425b;
      height: calc(221px + env(safe-area-inset-bottom));
      height: calc(221px + env(safe-area-inset-bottom));
      z-index: 100;
      &-top {
        height: 100px;
        border-bottom: 1px solid #4C5A7B;
        padding: 0 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 28px;

        .adm-checkbox {
          --icon-size: 28px;
          --font-size: 28px;
          color: #aeb1b8;
        }

        &-choose {
          color: #aeb1b8;
          cursor: pointer;
          span {
            color: #fff;
            padding: 0 10px;
          }
        }
        &-close {
          color: #fff;
        }
      }
      &-bottom {
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;

        &_item {
          display: flex;
          flex-direction: column;
          cursor: pointer;
          &-icon {
            width: 56px;
            height: 56px;
          }
          &-info {
            font-size: 20px;
            width: 56px;
            text-align: center;
            color: #fff;
          }
        }

      }
    }
  }

  .adm-spin-loading {
    --size: 60px;
    margin: 300px auto 0;
  }

  &_list {
    padding: 60px;
    display: flex;
    flex-wrap: wrap;

    &-item {
      width: 300px;
      height: 380px;
      color: #fff;
      margin-right: 70px;
      margin-bottom: 70px;
      cursor: pointer;
      padding: 30px;
      box-sizing: border-box;
      position: relative;
      background: linear-gradient( 180deg, #0D234A 0%, #3F5D8F 100%);
      box-shadow: inset 0px 0px 0px 4px #70AAFC;
      border-radius: 30px;
      text-align: center;

      &:nth-child(5n) {
        margin-right: 0;
      }

      &-img {
        display: inline-block;
        width: 100px;
        height: 100px;
        margin-top: 40px;
        margin-bottom: 68px;
      }

      &-name {
        font-size: 28px;
        line-height: 33px;
      }

      .adm-checkbox {
        position: absolute;
        top: 0;
        left: 30px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        --icon-size: 30px;
        display: flex;
        align-items: start;
        padding-top: 30px;
      }
    }
  }

  &_nav-right {
    font-size: 26px;
    padding-right: 55px;
    &-info {
      cursor: pointer;
      display: inline-block;
      color: #fff;

      text-align: center;
      width: 140px;
      height: 50px;
      line-height: 48px;
      border-radius: 5px;
      border: 1px solid #FFFFFF;
    }
  }
}

.to-detail-mask {
  .adm-toast-main {
    top: 25% !important;
    max-width: 500px;
  }
  .adm-auto-center-content {
    font-size: 28px !important;
  }
}