@button-sketch-scale: 0.5;
.component-usual-button {
  height: 100%;
  button {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    border-radius: 20px * @button-sketch-scale;
    label {
      font-family: @font-family;
      font-size: @font-16;
      letter-spacing: 0;
      text-align: center;
      line-height: .32rem * @button-sketch-scale;
    }
  }
  .normal-style {
    background: @blue;
    box-shadow: 0 4px 12px 0 rgba(57, 35, 123, 0.30);
    label {
      color: @white;
    }
  }
  .border-style {
    background: @white;
    border: 1px solid @blue-light-l;
    label {
      color: @blue-light-l;
    }
  }
  .shadow-style {
    background: @white;
    box-shadow: 0 4px 12px 0 rgba(57, 35, 123, 0.30);
    label {
      color: @blue-gray-light;
    }
  }
}