.refundGoodsDeatil {
  margin-top: 9px;
  background: #fff;
  padding: 30px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  position: relative;

  @mixin textColor {
    color: rgb(135, 133, 133);
  }

  .goodsDeatilMsg {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    position: relative;

    .goods_img {
      .img {
        width: 80px;
        height: 80px;
      }
    }

    .goods_content {
      .goods_text {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin: 0px 10px;

        .goods_title {
          display: -webkit-box; //弹性盒模型
          -webkit-box-orient: vertical; //上下垂直
          -webkit-line-clamp: 2; //自定义行数
          overflow: hidden;
          text-overflow: ellipsis;
          line-height: 20px;
        }

        .goods_price {
          margin-left: 10px;
        }
      }

      .goods_nums_btm {
        bottom: 8px;
      }

      .goods_nums_btm1 {
        bottom: 14px;
      }

      .goods_nums {
        display: flex;
        justify-content: space-between;
        margin: 0 10px;

        .goods_size {
          @include textColor;
          font-size: 11px;
          margin-top: 10px;
        }

        .nums_btn {
          display: flex;
          align-items: center;
          color: rgb(135, 133, 133);

          .icon_btn {
            margin-right: 10px;
          }
        }
      }
    }

    .help_btn {
      position: absolute;
      bottom: -11px;
      color: rgb(135, 133, 133);
      font-size: 10px;
      border: 1px solid rgb(135, 133, 133);
      right: 10px;
      padding: 5px;
      border-radius: 10px;
      background: #f9f9f9;
      box-shadow: 1px 1px 1px rgb(135, 133, 133);
    }
  }
}
