.study__container {
  background: #4B41FF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0 46px 0;
  position: relative;

  .learn_left {
    position: absolute;
    left: 0;
    top: -31px;
    width: 46px;
    height: 126px;
  }

  .learn_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 156px;
    height: 234px;
  }

  .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 20px;
  }

  .sub__title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin: 12px 0 30px 0;
  }

  .table__container {
    width: 358px;
    color: #fff;
    background: #2E24D7;
    position: relative;

    .order_number {
      width: 50px;
    }

    .chapter {
      width: 158px;
      border-left: 1px solid #0099ff;
      border-right: 1px solid #0099ff;
    }

    .points {
      width: 150px;
    }

    .table__head {
      width: 100%;
      height: 32px;
      background: #ffd75d;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 4px 4px 0 0;

      .head_title {
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        color: #2E24D7;
      }
    }

    .table__body {
      width: 100%;

      .item__container {
        .item__title {
          height: 36px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 14px;
          font-weight: 500;
          color: rgba(255, 214, 103, 1);
        }
      }

      .item__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #0099FF;

        &:last-child {
          border-bottom: 1px solid #0099FF;
        }

        .content {
          height: 36px;
          box-sizing: border-box;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding-left: 6px;
          padding-right: 6px;
        }

        .number_center {
          display: flex;
          justify-content: center;
          padding-left: 0;
        }
      }
    }

    .table__bottom {
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 400;

      div {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      img {
        width: 9px;
        height: 9px;
        margin-left: 6px;
      }
    }
  }
}