.placeOrderResult {
  background-color: #f6f6f6;
  padding: 20px 12px 0;
  box-sizing: border-box;

  .placeOrderResultContent {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px 17px 30px;

    .icon {
      width: 34px;
      height: 34px;
      display: block;
      //background-color: yellowgreen;
      margin: 0 auto 15px;
    }

    .tips {
      border-bottom: 1px solid #dcdcdc;
      padding-bottom: 27px;

      .title {
        font-size: 20px;
        font-weight: 600;
        display: block;
        margin: 0 auto;
        text-align: center;
      }

      .tip {
        font-size: 14px;
        display: block;
        width: 220px;
        margin: 0 auto;
        text-align: center;
        padding-top: 8px;
      }
    }

    //.title {
    //  font-size: 20px;
    //  font-weight: 600;
    //  margin: 0 auto 23px;
    //  padding-bottom: 27px;
    //  display: block;
    //  text-align: center;
    //  border-bottom: 1px solid #DCDCDC;
    //}

    .placeOrderResultWrap {
      padding-top: 20px;
      margin-bottom: 44px;
      text-align: left;

      .placeOrderResultItem {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 6px;
        margin-bottom: 10px;

        .label {
          font-size: 14px;
          color: #999;
        }

        .value {
          font-size: 14px;
          color: #000;
        }
      }
    }

    .btnGroup {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;

      .btn {
        width: 100%;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
        text-align: center;
        box-sizing: border-box;
        border: 1px solid #000;

        &.black {
          background-color: #34c0bc;
          color: #fff;
          margin-left: 0;
        }

        &.white {
          background-color: #34c0bc;
          color: #000;
        }
      }
    }
  }
}
