.study__container {
  background: #0096ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0 30px 0;
  position: relative;
  .learn_left {
    position: absolute;
    left: 0;
    top: 36px;
    width: 46px;
    height: 126px;
  }
  .learn_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 156px;
    height: 234px;
  }
  .title {
    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 22px 0;
  }
  .step__container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    .item__container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-left: 28px;
      width: 80px;
      position: relative;
      &:first-child {
        margin-left: 0;
      }
      img {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
      }
      p {
        text-align: center;
        font-size: 12px;
        line-height: 12px;
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
        line-height: 16px;
      }
      .item__line {
        width: 34px;
        height: 1px;
        background: rgba(255, 255, 255, 1);
        opacity: 0.4;
        border-radius: 0px;
        position: absolute;
        top: 18px;
        right: -34px;
      }
    }
  }

  .table__container {
    width: 358px;
    color: #fff;
    background: #005ac6;
    margin-top: 22px;
    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: rgba(0, 93, 195, 1);
      }
    }

    .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;
      }
    }
  }
}