@import '../common/index.less';
@yellow: rgb(255, 180, 0);
.ph-button {
  touch-action: manipulation;
  display: block;
  height: 54px;
  line-height: 54px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-radius: 28px;
  background-color: @yellow;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: nowrap;
}
.ph-button-large-br {
  border-radius: 30px;
}
.ph-button-inline {
  display: inline-block;
  padding: 0 15px;
}
.ph-button-active {
  position: relative;
}
.ph-button-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
}
.ph-button.ph-button-disabled {
  color: #fff;
  background-color: #d8d8d8;
}
.ph-button-danger {
  color: #fff;
  background-color: #ff3333;
}
.ph-button-ghost {
  color: @yellow;
  border: 1PX solid @yellow;
  background-color: transparent;
}
.ph-button-ghost.ph-button-active {
  background-color: rgba(79, 203, 25, 0.1);
}
.ph-button-ghost.ph-button-active::after {
  content: none;
}
.ph-button-ghost.ph-button-disabled {
  color: #d8d8d8;
  border-color: #d8d8d8;
  background-color: transparent;
}
.ph-button-icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.ph-button-icon > .ph-button-icon {
  margin-right: 0.5em;
}
.ph-button-pad {
  height: @r* 54px;
  line-height: @r * 54px;
  border-radius: @r * 28px;
  font-size: @r * 18px;
}
