.banner-sourcing {
  height: 432px;
  position: relative;
  background-image: url('../images/sourcing/banner.webp');
  background-size: cover;

  &::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 1;
    opacity: .4;
    position: absolute;
    top: 0;
    top: 0;
  }

  p {
    color: #FFFFFF;
    position: relative;
    z-index: 2;

    &:nth-child(1) {
      font-size: 32px;
      font-weight: bold;
      padding-top: 80px;
    }

    &:nth-child(2) {
      font-size: 16px;
      line-height: 24px;
      padding-top: 40px;
      opacity: .9;
    }
  }
}

.souring-block-1 {
  padding-top: 20px;

  .souring-block-1-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;


    .souring-block-1-text-box {
      display: flex;
      flex-direction: column;
      row-gap: 40px;
      justify-content: center;

      p {
        color: #3D3D3D;
        width: 480px;
        text-align: left;

        &:nth-child(1) {
          font-size: 32px;
          font-weight: bold;
        }

        &:nth-child(2) {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }

    .souring-block-1-img-box {
      position: relative;
      width: calc(584px + 12px);
      height: 348px;

      &::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 396px;
        height: 250px;
        border-radius: 12px;
        background: #370B5D;
        z-index: 1;
      }



      img {
        width: 584px;
        height: 336px;
        border-radius: 12px;
        position: absolute;
        left: 12px;
        bottom: 12px;
        z-index: 2;
      }
    }
  }
}

.souring-block-2 {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;

  .title-row {
    margin-top: 0;
    margin-bottom: 30px;
  }

  img {
    width: 1020px;
    object-fit: contain;
  }
}

.platform-block {
  display: flex;
  align-items: center;
  justify-content: space-between;

  &:nth-child(1) {
    margin-top: 80px;
    margin-bottom: 60px;
  }

  &:nth-child(2) {
    margin-bottom: 80px;
  }

  .platform-block-main-img {
    width: 584px;
    height: 336px;
    border-radius: 12px;
    background: #F7F7F5;
    display: flex;
    justify-content: center;

    img {
      width: 424px;
      object-fit: contain;

    }

    .introduce-block {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;

    }
  }

  .platform-block-desc {
    width: 526px;
    font-size: 16px;
    line-height: 24px;
    color: #3D3D3D;

    .platform-block-desc-img {
      img {
        width: 180px;
        object-fit: contain;
        display: block;
      }
    }
  }
}

.platform-block-2 {
  .platform-block-2-title {
    font-size: 32px;
    font-weight: bold;
    color: #3D3D3D;
    text-align: center;
    margin-bottom: 80px;
  }

  .platform-block-2-main {
    display: flex;
    justify-content: space-between;
    column-gap: 16px;
    margin-bottom: 80px;

    .platform-block-2-main-item {
      flex: 1;
      padding: 32px 0 0 32px;
      background: #F7F7F7;
      border-radius: 8px;
      height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

      .platform-block-2-main-top {
        font-size: 18px;
        font-weight: bold;
        color: #3D3D3D;
        line-height: 27px;
        padding-right: 30px;
      }

      .platform-block-2-main-mid {
        margin-top: 48px;
        display: flex;
        justify-content: flex-end;
        padding-right: 32px;

        img {
          width: 32px;
          height: 32px;
        }
      }

      .platform-block-2-main-bottom {
        margin-top: 10px;

        img {
          width: 220px;
          object-fit: contain;
        }
      }
    }
  }
}