.phoenix-icon-button-group {
  font-family: "PingFang SC", "Hiragino Sans GB", STHeitiSC, Helvetica, "Helvetica Neue", "Microsoft YaHei", Tahoma;
  position: relative;
  display: inline-block;
}

.phoenix-icon-button-group__item {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #bfc3c7;
  width: 30px;
  height: 30px;
  background: white;
  border: 1px solid #e6e8eb;
  border-right: 0px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.phoenix-icon-button-group__item:hover {
  background: rgba(133, 194, 255, 0.1);
  color: #1d86f0;
}

.phoenix-icon-button-group__item:active {
  background: rgba(133, 194, 255, 0.2);
  color: #1d86f0;
}

.phoenix-icon-button-group__item:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.phoenix-icon-button-group__item:last-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid #e6e8eb;
}

.phoenix-icon-button-group__item.active {
  background: rgba(133, 194, 255, 0.2);
  color: #1d86f0;
}

.phoenix-icon-button-group__item--disable {
  cursor: not-allowed;
  color: rgba(191, 195, 199, 0.7);
  background-color: rgba(230, 232, 235, 0.3);
}

.phoenix-icon-button-group__item--disable.active {
  color: rgba(29, 134, 240, 0.5);
}

.phoenix-icon-button-group__item--disable.active:hover {
  color: rgba(29, 134, 240, 0.5);
  background: rgba(133, 194, 255, 0.2);
}

.phoenix-icon-button-group__item--disable:hover {
  color: rgba(191, 195, 199, 0.7);
  background-color: rgba(230, 232, 235, 0.3);
}
