.wm-pure-text {
  margin: 0 24px 24px;
  border-radius: 12px;
  background-color: #fff;

  .items {
    display: flex;
    flex-direction: row;
    padding: 40px 0;

    .item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;

      .main-text {
        font-size: 32px;
        font-weight: bold;
        color: #ff6600;
        margin-bottom: 16px;
      }
      .sub-text {
        font-size: 24px;
        color: #666;
      }
    }
  }
}

.wm-image-text {
  margin: 0 24px 24px;
  border-radius: 12px;
  background-color: #fff;

  .items {
    display: flex;
    flex-direction: row;
    padding: 40px 0 0 40px;
    flex-flow: wrap;

    .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 25%;
      padding-bottom: 40px;

      .icon {
        width: 48px;
        height: 48px;
      }
      .sub-text {
        margin-top: 20px;
        font-size: 24px;
        color: #666;
      }
    }
  }
}
