.goodsDetailHandleBarOne {
  width: 100%;
  height: 54px;
  background-color: #ffffff;
  position: sticky;
  bottom: 0;
  left: 0;
  //top: 0;
  box-sizing: border-box;
  padding: 7px 10px;
  //display: grid;
  //grid-template-columns: 30px 40px 1fr;
  //gap: 20px;
  display: flex;

  .txt {
    font-size: 13px;
    margin-top: 4px;
  }

  .server {
    width: 30px;
    margin-right: 20px;
  }

  .cart {
    width: 40px;
    margin-right: 20px;
    background-color: #ffffff;
  }

  .linkGroup {
    text-align: center;
  }

  .goods-detail-one-btn-group {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 10px;

    .btn {
      display: flex;
      align-items: center;
      justify-content: center;

      &.addCart {
        background-color: #959595;
        color: #ffffff;
        text-align: center;
      }

      &.buy {
        background-color: #34c0bc !important;
        color: #ffffff;
        text-align: center;
      }
    }
  }
}
