body {
  background: rgba(51, 115, 253, 1);
}

.pay_container {
  display: flex;
  flex-direction: column;
  margin: 0.2rem 0.3rem;
  overflow: hidden;

  //common
  .label_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.2rem;

    .title_container {
      height: 1.05rem;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      span {
        font-size: 0.32rem;
        font-family: PingFangSC-Semibold, PingFang SC;
        font-weight: 600;
        color: rgba(189, 210, 255, 1);
      }
    }

    .label_content {
      border-radius: 0.2rem;
      background-color: #fff;
      width: 100%;

      // height: 3000px;
    }

    //master-info
    .master_info {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      margin: 0.4rem 0.3rem;

      .info_left {
        flex: 1;
        display: flex;
        flex-direction: column;
        //justify-content: flex-start;
        align-items: flex-start;
        overflow: hidden;
        margin-right: 0.2rem;

        .info_name_phone {
          margin-bottom: 0.1rem;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center;

          .info_name {
            min-height: 0.45rem;
            margin-right: 0.1rem;
            font-size: 0.32rem;
            font-family: PingFangSC-Regular, PingFang SC;
            font-weight: 400;
            color: rgba(51, 51, 51, 1);
          }
          .info_phone {
            min-height: 0.45rem;
            font-size: 0.32rem;
            font-family: PingFangSC-Regular, PingFang SC;
            font-weight: 400;
            color: rgba(153, 153, 153, 1);
          }
        }

        .info_address {
          min-height: 0.4rem;
          font-size: 0.28rem;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(51, 51, 51, 1);
          // overflow: hidden;
          word-wrap: break-word;
          word-break: break-all;
        }
      }
      .info_right {
        width: 0.1rem;
        height: 0.18rem;
      }
    }

    //buy-info
    .buy_info {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      margin: 0.4rem 0.3rem;

      .info_left {
        width: 1.64rem;
        height: 1.64rem;
      }
      .info_right {
        flex: 1;
        height: 1.64rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        //align-items: flex-start;

        .info_name {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: flex-start;

          min-height: 0.45rem;
          margin-right: 0.1rem;
          font-size: 0.32rem;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(51, 51, 51, 1);
        }
        .info_num {
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          align-items: flex-start;
          font-size: 0.32rem;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(153, 153, 153, 1);
        }

        .info_price {
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          align-items: flex-start;
          font-size: 0.32rem;
          font-family: PingFangSC-Semibold, PingFang SC;
          font-weight: 600;
          color: rgba(51, 51, 51, 1);
        }
      }
    }

    //pay-info
    .pay_info {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      margin: 0.4rem 0.3rem;

      .info_left {
        width: 0.5rem;
        height: 0.5rem;
      }
      .info_right {
        flex: 1;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        .info_name {
          margin-left: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(51, 51, 51, 1);
          letter-spacing: 1px;
        }
        .info_select {
          width: 0.42rem;
          height: 0.29rem;
        }
      }
    }
  }

  .pay_button_content {
    margin-top: 0.8rem;
    height: 0.98rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    .pay_button {
      width: 4.9rem;
      height: 0.98rem;
    }
  }
}

//支付中
.modal_container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  //background-color: red;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 100;

  img {
    width: 3rem;
    height: 2.6rem;
  }

  .modal_content {
    width: 3rem;
    height: 3rem;
    border-radius: 6px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    // background-color: rgba(153, 153, 153, 1);

    span {
      color: #fff;
    }
  }
}
